@charset "UTF-8";

#footer
{
	background-color: rgb(240, 240, 240);
}
body:after
{
	background-color: rgb(240, 240, 240);
}

#title
{
	padding-bottom: 0;
}

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

.selector_wrapper select
{
	color: rgb(0, 0, 0);
	font-family: serif, "A1 Mincho", 'YuMin_36pKn-Medium';
}

.selector_wrapper label
{
	position: relative;		/* 選択ボックスの位置指定 */ 
	display: inline-block;			/* ブロックレベル要素化にする */ 
	box-sizing:border-box;
	width: auto;
	padding: .5em;
	padding-right: 2em;
	background-color:rgb(255, 255, 255);
	border: 1px solid rgb(100, 100, 100);/* ボックスの境界線を実線で指定する */
}
.selector_wrapper label:before
{
	content: "";
	position: absolute;
	width: .4em;
	height: .4em;
	
	top: 50%;
	right: 1em;
	display: block;
	margin-top: -.3em;
	
	border-color: rgb(0, 0, 0);
	border-style: solid;
	border-width: 0 1px 1px 0;
	
	transform: rotate( 45deg );
	-ms-transform: rotate( 45deg );
}
.selector_wrapper select
{
	cursor: pointer;
	font-size: 1em;
	padding: .2em .5em;
	box-sizing:border-box;
	-webkit-appearance: none;/* ベンダープレフィックス(Google Chrome、Safari用) */
	-moz-appearance: none;	/* ベンダープレフィックス(Firefox用) */
	appearance: none;		/* 標準のスタイルを無効にする */ 
	display: block;			/* ブロックレベル要素化する */ 
	border: none;			/* 境界線をなしに指定する */
	background: transparent;/* 背景を透過指定する */
	color: rgb(100, 100, 100);
}
.selector_wrapper select:focus
{
	outline: none;
}

::-ms-expand
{		/* select要素のデザインを無効にする（IE用） */
	display: none;
}

option
{
	box-sizing:border-box;
	padding: .5em;
	font-size: 1em;
	background-color: transparent;
	-moz-border-radius: 0em;
	-webkit-border-radius: 0em;
	border-radius: 0em;
	-webkit-appearance: none;
	color: white;
}

option
{
	border:1px solid rgb(255,255,255);
}


#news
{
	padding-bottom: max(10vw, 10rem);
}

.news
{
	display: flex;
	justify-content: space-between;
	margin-top: max(5vw, 5rem);
	padding-top: max(5vw, 5rem);
	border-top: 1px solid rgb(200, 200, 200);
}

h1.secTitle, h2.secTitle
{
	font-size: clamp(1.1rem, 3vw, 1.2rem);
	margin-bottom: 2em;
	max-width: 800px;
}

.date
{
	font-family: R-R, GG-R, sans-serif;
	color: rgb(100, 100, 100);
	padding: 0 2rem;
}

.news_wrapper
{
	width: calc(100% - 10rem);
	padding: 0 2rem;
}

.text_photo
{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	color: rgb(75, 75, 75);
}

.text_photo .text
{
	width: calc(100% - 300px);
	max-width: 800px;
	flex: 1 0 auto;
	padding-right: 2rem;
}

.text_photo .photo_wrapper
{
	width: 300px;
	padding-left: 2rem;
}

.text_photo .photo
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.text_photo .photo + .photo
{
	margin-top: 1rem;
}

.text_photo .photo figure
{
	display:flex;
	justify-content: center;
	width: 100%;
	line-height: 0;
}
.text_photo .photo figure > img
{
	cursor: zoom-in;
	max-width: 100%;
	object-fit: scale-down;
	object-position: 50% 50%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
body:not(.touch) .text_photo .photo figure > img:hover
{
	filter:alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;
}

.news_wrapper .photo .caption
{
	margin-top: .5em;
	font-size: .8em;
	font-family: R-R, GG-R, sans-serif;
}

.news_wrapper .list
{
	display: flex;
	flex-direction:column;
	align-content: center;
	font-size: .9em;
	background-color: rgb(255, 255, 255);
	margin-top: max(3rem, 3vw)
}

.news_wrapper .list tr:nth-of-type(1) td
{
	border-top: 1px solid rgb(240, 240, 240);
}

.news_wrapper .list td
{
	border-bottom: 1px solid rgb(240, 240, 240);
	padding-top: .5em;
	padding-bottom: .5em;
}

.news_wrapper .list td:nth-of-type(1)
{
	padding-right: 1em;
	color: rgb(50, 50, 50);
}
.news_wrapper .list td:nth-of-type(2)
{
	font-family: GG-R, R-R, sans-serif;
	color: rgb(75, 75, 75);
}


.links
{
	border-top: 1px solid rgb(200, 200, 200);
	display: flex;
	justify-content: center;
	margin-top: max(5vw, 5rem);
	padding-top: max(5vw, 5rem);
	border-top: 1px solid rgb(200, 200, 200);
}

/**********************************************************************/
/****************************** Relative ********************************/
/**********************************************************************/

#relative
{
	background-color: rgb(240, 240, 240);
	padding: max(3rem, 3vw) 2rem;
	margin: max(3rem, 3vw) 0;
}

#relative h3
{
	font-size: 1rem;
	margin-bottom: .5em;
}

#relative > div
{
	font-size: .9em;
	margin: 0 auto;
	max-width: 600px;
}

#relative > div a.dir._a > p
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#relative > div a.dir._a
{
	padding: 1em 0;
	border-bottom: 1px solid rgb(200, 200, 200);
}

#relative > div a.dir._a:nth-of-type(1)
{
	border-top: 1px solid rgb(200, 200, 200);
}

#relative > div a.dir._a > p > span:nth-of-type(1)
{
	font-family: GG-R, R-R, sans-serif;
	color: rgb(75, 75, 75);
	font-size: .7em;
	border: 1px solid;
	padding: .25em .5em;
	line-height: 1;
	white-space: nowrap;
	margin-bottom: .5em;
}

#relative .special_link
{
	margin-top: max(3rem, 3vw);
	display: flex;
	flex-direction: column;
	align-items: center;
}

/**********************************************************************/
/**************************** Prev Next ********************************/
/**********************************************************************/

#prev_next
{
	padding: 0 2rem max(3rem, 3vw);
}

#prev_next > div
{
	display: flex;
	align-items:center;
}
#prev_next > div:nth-of-type(1)
{
	justify-content: space-between;
	padding-top: 1em;
	border-top: 1px solid rgb(150,150,150);
	margin-bottom: max(5vw, 5rem);
}
#prev_next > div:nth-of-type(2)
{
	margin-top: 1em;
	justify-content: center;
}

#prev_next a
{
	display: flex;
	align-items:center;
	flex-wrap:nowrap;
	font-size: .9em;
}

#prev_next a span
{
	margin: 0 .5em;
}

#prev_next a.next
{
	justify-content: flex-end;
}

#prev_next a.next:after,
#prev_next a.prev:before
{
	content:"";
	display:block;
	width: .5em;
	aspect-ratio: 1 / 1;
	border-style: solid;
	border-width: 2px 2px 0 0;
	
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

#prev_next a.prev:before
{
	transform: rotate(-135deg);
}
body:not(.touch) #prev_next a.prev:hover:before
{
	transform: rotate(-135deg) translate(0.25em, -0.25em);
}
#prev_next a.next:after
{
	transform: rotate(45deg);
}
body:not(.touch) #prev_next a.next:hover:after
{
	transform: rotate(45deg) translate(0.25em, -0.25em);
}

#prev_next a.box
{
	font-size: .8em;
}

/*///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// MEDIA SCREEN /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (max-width: 900px)
{
	.text_photo
	{
		flex-direction: column;
	}
	.text_photo .text
	{
		width: 100%;
		padding-right: 0;
	}
	.text_photo .photo_wrapper
	{
		margin-top: max(3vw, 3rem);
		width: 100%;
		padding-left: 0;
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 650px)
{
	.news
	{
		flex-direction: column;
	}
	.news_wrapper
	{
		width: 100%;
	}
	.date
	{
		margin-bottom: max(3vw, 3rem);
	}
}

@media screen and (max-width: 600px)
{
	.news_wrapper .list td
	{
		display:block;
	}
	.news_wrapper .list td:nth-of-type(2n+1)
	{
		padding-top: .5em;
		padding-bottom: 0;
	}
	.news_wrapper .list td:nth-of-type(2n)
	{
		border-top-width: 0;
		padding-top: 0;
		padding-bottom: .5em;
	}
}