@charset "UTF-8";
#wrapper {
	padding-top: 0;
}
#header {
	color: #fff;
	-webkit-transition-property: -webkit-transform, color;
	   -moz-transition-property:    -moz-transform, color;
	    -ms-transition-property:     -ms-transform, color;
	     -o-transition-property:      -o-transform, color;
	        transition-property:         transform, color;
}
#header_belt {
	background-color: rgba(255,255,255,0);
	-webkit-transition-duration: 0.3s;
	   -moz-transition-duration: 0.3s;
	    -ms-transition-duration: 0.3s;
	     -o-transition-duration: 0.3s;
	        transition-duration: 0.3s;
	-webkit-transition-property: background-color;
	   -moz-transition-property: background-color;
	    -ms-transition-property: background-color;
	     -o-transition-property: background-color;
	        transition-property: background-color;
}
#header:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: -webkit-linear-gradient(rgba(63,70,77,0.5), rgba(63,70,77,0));
	background-image:    -moz-linear-gradient(rgba(63,70,77,0.5), rgba(63,70,77,0));
	background-image:      -o-linear-gradient(rgba(63,70,77,0.5), rgba(63,70,77,0));
	background-image:     -ms-linear-gradient(rgba(63,70,77,0.5), rgba(63,70,77,0));
	background-image:         linear-gradient(rgba(63,70,77,0.5), rgba(63,70,77,0));
	content: "";
}
#header.addBG, #header.opened {
	color: #3f464d;
}
#header.addBG #header_belt, #header.opened #header_belt {
	background-color: #fff;
}
#splash {
	display: -webkit-box;
	display:    -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         box;
	display:         flex;
	overflow: hidden;
	position: fixed;
	z-index: 50000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #f4f6f8;
	-webkit-animation-name: splash;
	   -moz-animation-name: splash;
	    -ms-animation-name: splash;
	     -o-animation-name: splash;
	        animation-name: splash;
	-webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	    -ms-animation-duration: 1s;
	     -o-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-delay: 4s;
	   -moz-animation-delay: 4s;
	    -ms-animation-delay: 4s;
	     -o-animation-delay: 4s;
	        animation-delay: 4s;

	-webkit-align-items: center;
	        align-items: center;
	-webkit-box-align: center;
	   -moz-box-align: center;
	     -o-box-align: center;
	-webkit-box-pack: center;
	   -moz-box-pack: center;
	     -o-box-pack: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;
}
#splash.hidden {
	display: none;
}
#splash, #splash_logo, #splash_logo_svg {
	-webkit-animation-fill-mode: forwards;
	   -moz-animation-fill-mode: forwards;
	    -ms-animation-fill-mode: forwards;
	     -o-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
#splash_logo {
	overflow: hidden;
	max-width: 70%;
	width: 260px;
	-webkit-animation-name: splash_logo;
	   -moz-animation-name: splash_logo;
	    -ms-animation-name: splash_logo;
	     -o-animation-name: splash_logo;
	        animation-name: splash_logo;
	-webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	    -ms-animation-duration: 1s;
	     -o-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-delay: 2s;
	   -moz-animation-delay: 2s;
	    -ms-animation-delay: 2s;
	     -o-animation-delay: 2s;
	        animation-delay: 2s;
}
#splash_logo_svg {
	-webkit-animation-name: splash_logo_svg;
	   -moz-animation-name: splash_logo_svg;
	    -ms-animation-name: splash_logo_svg;
	     -o-animation-name: splash_logo_svg;
	        animation-name: splash_logo_svg;
	-webkit-animation-duration: 0.5s;
	   -moz-animation-duration: 0.5s;
	    -ms-animation-duration: 0.5s;
	     -o-animation-duration: 0.5s;
	        animation-duration: 0.5s;
}
#fv {
	position: relative;
	min-height: 650px;
	height: calc(var(--vh, 1vh) * 100);
}
#fv_inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip: rect(0, auto, auto, 0);
}
#fv_bg {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	-webkit-transform: translate3d(0, 0, 0);
	   -moz-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	     -o-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}
#fv_bg:before, #fv_bg:after {
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	opacity: 0;
	content: "";
	-webkit-animation: fv_bg 16s 0s infinite;
	   -moz-animation: fv_bg 16s 0s infinite;
	    -ms-animation: fv_bg 16s 0s infinite;
	     -o-animation: fv_bg 16s 0s infinite;
	        animation: fv_bg 16s 0s infinite;
	-webkit-animation-timing-function: linear;
	   -moz-animation-timing-function: linear;
	    -ms-animation-timing-function: linear;
	     -o-animation-timing-function: linear;
	        animation-timing-function: linear;

	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	    filter: alpha(opacity=0);
}
#fv_bg:before {
	background-image: url("../images/top/fv_bg_01.jpg");
}
#fv_bg:after {
	background-image: url("../images/top/fv_bg_02.jpg");
	-webkit-animation-delay: 8s;
	   -moz-animation-delay: 8s;
	    -ms-animation-delay: 8s;
	     -o-animation-delay: 8s;
	        animation-delay: 8s;
}
#fv_head {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);

	filter: drop-shadow(1px 1px 8px rgba(63,70,77,0.5));
}
#fv_head_container {
	position: relative;
	height: 100%;
}
#fv_playLink_wrapper {
	position: absolute;
}
#fv_playLink_box {
	display: -webkit-box;
	display:    -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         box;
	display:         flex;
}
#fv .fv_playLink {
	display: inline-block;
	position: relative;
	vertical-align: bottom;
}
#fv .fv_playLink_container:last-child {
	position: relative;
}
#fv .fv_playLink_container:last-child:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	border-left: 1px solid;
	opacity: 0.5;
	content: "";

	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	    filter: alpha(opacity=50);
}
#fv .fv_playLink_playIcon {
	position: absolute;
	top: 0;
	left: 0;
	background-size: 100%;
}
#fv .fv_playLink_label {
	position: relative;
}
#fv .fv_playLink_label_exIcon {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto 0;
}
#fv .fv_playLink_label_exIcon:before, #fv .fv_playLink_label_exIcon:after {
	display: block;
	position: absolute;
	content: "";
}
#fv .fv_playLink_label_exIcon:before {
	top: 0;
	right: 0;
	border: 1px solid;
}
#fv .fv_playLink_label_exIcon:after {
	bottom: 0;
	left: 0;
	border-bottom: 1px solid;
	border-left: 1px solid;
}
@media screen and (min-width: 769px) {
	#fv_playLink_wrapper {
		bottom: 20px;
		left: 40px;
		color: #fff;
	}
	#fv .fv_playLink {
		padding-left: 36px;
	}
	#fv .fv_playLink_container:last-child {
		margin-left: 24px;
		padding-left: 24px;
	}
	#fv .fv_playLink_playIcon {
		width: 2.6rem;
		height: 2.6rem;
		background-image: url("../images/global/icon_play_white.svg");
	}
	#fv .fv_playLink_label {
		padding-right: 24px;
		font-size: 1.4rem;
		line-height: 2.6rem;
	}
	#fv .fv_playLink_label_exIcon {
		width: 17px;
		height: 11px;
	}
	#fv .fv_playLink_label_exIcon:before, #fv .fv_playLink_label_exIcon:after {
		width: 14px;
		height: 8px;
	}
}
@media screen and (max-width: 768px) {
	#fv_playLink_wrapper {
		bottom: -50px;
		left: 24px;
		max-width: 327px;
		width: calc(100% - 48px);
	}
	#fv .fv_playLink {
		padding-left: clamp(0px, 7.466666666666667vw, 28px);
	}
	#fv .fv_playLink_container:first-child {
		width: calc((275 / 654) * 100%);

		-webkit-flex-shrink: 0;
		        flex-shrink: 0;
	}
	#fv .fv_playLink_container:last-child {
		width: calc((379 / 654) * 100%);
		text-align: right;
	}
	#fv .fv_playLink_playIcon {
		width: clamp(0px, 5.333333333333333vw, 2rem);
		height: clamp(0px, 5.333333333333333vw, 2rem);
		background-image: url("../images/global/icon_play.svg");
	}
	#fv .fv_playLink_label {
		padding-right: 24px;
		font-size: clamp(1rem, 3.2vw, 1.2rem);
		line-height: clamp(0px, 5.333333333333333vw, 2rem);
	}
	#fv .fv_playLink_label_exIcon {
		width: 13px;
		height: 9px;
	}
	#fv .fv_playLink_label_exIcon:before, #fv .fv_playLink_label_exIcon:after {
		width: 10px;
		height: 6px;
	}
}
#about {
	background-color: #f4f6f8;
}
#about_slider:not(.slick-slider) .about_slide + .about_slide {
	display: none;
}
#about_slider_container {
	position: relative;
}
#about_slider .about_slide_inner {
	position: relative;
}
#about_slider .about_slide_credit {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 100%;
	padding: 0 10px 10px 0;
}
#about_slider_notes {
	position: absolute;
}
#about_slider_notes button {
	display: block;
	position: relative;
	border: 1px solid;
	border-radius: 50%;
	opacity: 0.2;
	font-size: 0;

	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	    filter: alpha(opacity=20);
}
#about_slider_notes button:before {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 50%;
	margin: auto;
	border-radius: 50%;
	background-color: currentColor;
}
#about_slider_notes .slick-active button {
	opacity: 1;

	-ms-filter: none;
	    filter: none;
}
#about_slider_notes .slick-active button:before {
	content: "";
}
#about_text_head {
	position: relative;
	padding-left: 20px;
	font-family: "Cormorant Garamond", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Noto Serif JP", "MS P明朝", "MS PMincho", serif;
	font-weight: 700;
}
#about_text_head:before {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 0;
	margin: auto 0;
	border-top: 1px solid;
	content: "";
}
#about_text_content .word {
	display: inline-block;
}
@media screen and (min-width: 769px) {
	#about_wrapper {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;
	}
	#about_slider, #about_slider .slick-list, #about_slider .slick-track, #about_slider .about_slide_inner {
		height: 100%;
	}
	#about_slider_container {
		width: calc((600 / 1440) * 100%);
	}
	#about_slider .about_slide {
		position: relative;
	}
	#about_slider .about_slide_inner {
		min-height: calc(var(--vh, 1vh) * 100);
	}
	#about_slider .about_slide_image {
		overflow: hidden;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	#about_slider .about_slide_image img {
		width: 100%;
		height: 100%;

		object-fit: cover;
		object-position: right 50%;
	}
	#about_slider .about_slide_credit {
		width: 182px;
	}
	#about_slider_notes {
		bottom: 0;
		left: 100%;
		padding: 0 0 20px 14px;
	}
	#about_slider_notes button {
		width: 18px;
		height: 18px;
	}
	#about_slider_notes li + li {
		margin-top: 10px;
	}
	#about_text {
		padding: 0 calc((110 / 840) * 100%);
	}
	#about_text_container {
		width: calc((840 / 1440) * 100%);
		padding: 90px 0 100px;

		-webkit-align-self: center;
		        align-self: center;
		-ms-flex-item-align: center;
	}
	#about_text_head {
		margin-bottom: 55px;
		font-size: 3rem;
	}
	#about_text_content {
		margin-bottom: 55px;
		font-size: 1.6rem;
		line-height: 4rem;
	}
}
@media screen and (max-width: 1439px) {
	#about_text_content .touten {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	#about {
		padding: 80px 0 75px;
	}
	#about_slider_container {
		margin-bottom: 70px;
		padding-right: 24px;
	}
	#about_slider .about_slide_credit {
		width: 150px;
	}
	#about_slider_notes {
		top: 100%;
		right: 0;
		padding: 15px 24px 0 0;
	}
	#about_slider_notes ul {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;

		-webkit-box-pack: end;
		   -moz-box-pack: end;
		     -o-box-pack: end;
		-ms-flex-pack: end;
		-webkit-justify-content: flex-end;
		        justify-content: flex-end;
	}
	#about_slider_notes button {
		width: 14px;
		height: 14px;
	}
	#about_slider_notes li + li {
		margin-left: 12px;
	}
	#about_text_container {
		padding: 0 24px;
	}
	#about_text_head {
		margin-bottom: 40px;
		font-size: 2.5rem;
	}
	#about_text_content {
		margin-bottom: 50px;
		font-size: 1.3rem;
		line-height: 3rem;
	}
	#about_text_button {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;

		-webkit-box-pack: end;
		   -moz-box-pack: end;
		     -o-box-pack: end;
		-ms-flex-pack: end;
		-webkit-justify-content: flex-end;
		        justify-content: flex-end;
	}
}
.lined_head {
	position: relative;
	margin-bottom: 45px;
	padding-left: 20px;
	font-family: "Cormorant Garamond", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Noto Serif JP", "MS P明朝", "MS PMincho", serif;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.lined_head:before {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 0;
	margin: auto 0;
	border-top: 1px solid;
	content: "";
}
@media screen and (min-width: 769px) {
	.lined_head {
		font-size: 3rem;
	}
}
@media screen and (max-width: 768px) {
	.lined_head {
		margin-bottom: 45px;
		font-size: 2.5rem;
	}
}
.list_section {
	overflow: hidden;
}
.list_section + .list_section .list_section_block {
	border-top: 1px solid #e1e2e3;
}
@media screen and (min-width: 769px) {
	.list_section_block {
		padding: 90px 0 100px;
	}
	.list_section_box {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;

		-webkit-box-lines: multiple;
		   -moz-box-lines: multiple;
		     -o-box-lines: multiple;
		-webkit-box-pack: justify;
		   -moz-box-pack: justify;
		     -o-box-pack: justify;
		-ms-flex-pack: justify;
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
		-webkit-justify-content: space-between;
		        justify-content: space-between;
	}
}
@media screen and (max-width: 768px) {
	.list_section_block {
		padding: 65px 0 75px;
	}
	.list_section_button_container {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;
	}
	.list_section_button_container .arrow_button {
		margin-left: auto;
	}
}
.list_carousel {
	z-index: 1;
}
.list_carousel .slick-list {
	overflow: visible !important;
}
.list_carousel:not(.slick-slider) .list_carousel_item + .list_carousel_item {
	display: none;
}
.list_carousel_container {
	position: relative;
}
.list_carousel_item_link {
	display: block;
}
.list_carousel_item_photo {
	margin-bottom: 14px;

	aspect-ratio: 1000/568;
}
.list_carousel_item_photo img {
	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;
}
.list_carousel_item_text_basicdata {
	display: -webkit-box;
	display:    -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         box;
	display:         flex;
	margin-bottom: 10px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.list_carousel_item_text_date {
	margin-right: 1em;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 2rem;
}
.list_carousel_item_text_tag {
	padding: 0 0.5em;
	border: 1px solid;
	font-weight: 700;
	line-height: 1.8rem;
}
.list_carousel_item_text_title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.2rem;
}
.list_carousel_arrows {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.list_carousel_arrows .slick-arrow {
	display: block;
	position: absolute;
	z-index: 2;
	border-radius: 50%;
	background-color: #3f464d;
	font-size: 0;
	-webkit-transition-duration: 0.3s;
	   -moz-transition-duration: 0.3s;
	    -ms-transition-duration: 0.3s;
	     -o-transition-duration: 0.3s;
	        transition-duration: 0.3s;
	-webkit-transition-property: visibility, opacity;
	   -moz-transition-property: visibility, opacity;
	    -ms-transition-property: visibility, opacity;
	     -o-transition-property: visibility, opacity;
	        transition-property: visibility, opacity;
}
.list_carousel_arrows .slick-arrow.slick-disabled {
	visibility: hidden;
	opacity: 0;

	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	    filter: alpha(opacity=0);
}
.list_carousel_arrows .slick-arrow:before {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 20%;
	height: 20%;
	margin: auto;
	color: #f8f7f5;
	content: "";
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.list_carousel_arrows .slick-prev:before {
	right: 36%;
	border-bottom: 2px solid;
	border-left: 2px solid;
}
.list_carousel_arrows .slick-next:before {
	left: 36%;
	border-top: 2px solid;
	border-right: 2px solid;
}
@media screen and (min-width: 769px) {
	.list_carousel {
		margin: 0 -16px;
	}
	.list_carousel_container {
		width: calc(100% + 120px);
		margin: 0 -60px;
		padding: 0 60px;

		-webkit-box-ordinal-group: 3;
		   -moz-box-ordinal-group: 3;
		     -o-box-ordinal-group: 3;
		-ms-flex-order: 3;
		-webkit-order: 3;
		        order: 3;
	}
	.list_carousel_item {
		width: 338px !important;
		padding: 0 16px;
	}
	.list_carousel_arrows .slick-arrow {
		top: 60px;
		width: 60px;
		height: 60px;
	}
	.list_carousel_arrows .slick-prev {
		left: 45px;
	}
	.list_carousel_arrows .slick-next {
		right: 45px;
	}
}
@media screen and (max-width: 768px) {
	.list_carousel {
		margin: 0 -12px;
	}
	.list_carousel_container {
		margin: 0 -24px 25px;
		padding: 0 24px;
	}
	.list_carousel_item {
		width: 250px !important;
		padding: 0 12px;
	}
	.list_carousel_arrows .slick-arrow {
		top: 45px;
		width: 50px;
		height: 50px;
	}
	.list_carousel_arrows .slick-prev {
		left: 20px;
	}
	.list_carousel_arrows .slick-next {
		right: 20px;
	}
}
#exhibition {
	background-color: #f4f6f8;
}
#exhibition_note {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
}
@media screen and (min-width: 769px) {
	#exhibition {
		padding: 95px 0 70px;
	}
	#exhibition_list {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;

		-webkit-box-lines: multiple;
		   -moz-box-lines: multiple;
		     -o-box-lines: multiple;
		-webkit-box-pack: justify;
		   -moz-box-pack: justify;
		     -o-box-pack: justify;
		-ms-flex-pack: justify;
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
		-webkit-justify-content: space-between;
		        justify-content: space-between;
	}
	#exhibition_list:after {
		display: block;
		width: calc((420 / 1320) * 100%);
		content: "";
	}
	#exhibition_note {
		margin-top: 20px;
	}
}
@media screen and (min-width: 769px) and (max-width: 999px) {
	#exhibition_list:after {
		content: none;
	}
}
@media screen and (max-width: 768px) {
	#exhibition {
		padding: 70px 0 50px;
	}
	#exhibition_note {
		margin-top: 15px;
	}
}
.exhibition_list_item {
	overflow: hidden;
	background-color: #fff;
}
.exhibition_list_item_text_head {
	position: relative;
	margin-bottom: 12px;
}
.exhibition_list_item_text_head > * {
	margin-top: 5px;
}
.exhibition_list_item_text_head:before {
	display: block;
	position: absolute;
	top: 14px;
	right: calc(100% + 10px);
	width: 100%;
	height: 0;
	border-top: 1px solid;
	content: "";
}
.exhibition_list_item_text_head_label {
	display: inline-block;
	margin-right: 10px;
	font-size: 1.8rem;
	font-weight: 700;
	vertical-align: bottom;
	line-height: 2rem;
}
.exhibition_list_item_text_head_tag {
	padding: 0 10px;
	border: 1px solid #3f464d;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	line-height: 1.8rem;
}
.exhibition_list_item_text_head_tag + .exhibition_list_item_text_head_tag {
	margin-left: 5px;
}
.exhibition_list_item_text_head_tags {
	display: -webkit-inline-box;
	display:    -moz-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display:         inline-box;
	display:         inline-flex;
}
.exhibition_list_item_text_head_tag_reserve {
	background-color: #3f464d;
	color: #fff;
}
.exhibition_list_item_text_content {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
}
.exhibition_list_item_text_content .note {
	margin-top: 1em;
	font-size: 0.8em;
}
.exhibition_list_item_text_content_link {
	display: inline-block;
	position: relative;
	padding-right: 25px;
	border-bottom: 1px solid;
	vertical-align: bottom;
}
.exhibition_list_item_text_content_link_container {
	margin-top: 5px;
}
.exhibition_list_item_text_content_link_icon {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto 0;
}
.exhibition_list_item_text_content_link_icon:before, .exhibition_list_item_text_content_link_icon:after {
	display: block;
	position: absolute;
	content: "";
}
.exhibition_list_item_text_content_link_icon:before {
	top: 0;
	right: 0;
	border: 1px solid;
}
.exhibition_list_item_text_content_link_icon:after {
	bottom: 0;
	left: 0;
	border-bottom: 1px solid;
	border-left: 1px solid;
}
.exhibition_list_item_text_button {
	margin: 0 auto;
}
.exhibition_list_item_text_button_container {
	margin-top: 30px;
}
@media screen and (min-width: 769px) {
	.exhibition_list_item {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;
		        flex-direction: column;
		width: calc((420 / 1320) * 100%);

		-webkit-box-orient: vertical;
		   -moz-box-orient: vertical;
		     -o-box-orient: vertical;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
	}
	.exhibition_list_item > * {
		width: 100%;
	}
	.exhibition_list_item:nth-of-type(n+4) {
		margin-top: 50px;
	}
	.exhibition_list_item_photo {
		-webkit-flex-shrink: 0;
		        flex-shrink: 0;
	}
	.exhibition_list_item_text {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;
		        flex-direction: column;
		height: 100%;
		padding: calc((30 / 420) * 100%);

		-webkit-box-orient: vertical;
		   -moz-box-orient: vertical;
		     -o-box-orient: vertical;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
	}
	.exhibition_list_item_text_content {
		margin-bottom: auto;
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	.exhibition_list_item_text_content_link_icon {
		width: 17px;
		height: 11px;
	}
	.exhibition_list_item_text_content_link_icon:before, .exhibition_list_item_text_content_link_icon:after {
		width: 14px;
		height: 8px;
	}
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
	.exhibition_list_item {
		width: calc((525 / 1080) * 100%);
	}
	.exhibition_list_item:nth-of-type(3) {
		margin-top: 50px;
	}
}
@media screen and (max-width: 768px) {
	.exhibition_list_item + .exhibition_list_item {
		margin-top: 30px;
	}
	.exhibition_list_item_text {
		padding: 15px 20px 30px;
	}
	.exhibition_list_item_text_content {
		font-size: 1.3rem;
		line-height: 2rem;
	}
	.exhibition_list_item_text_content_link_icon {
		width: 13px;
		height: 9px;
	}
	.exhibition_list_item_text_content_link_icon:before, .exhibition_list_item_text_content_link_icon:after {
		width: 10px;
		height: 6px;
	}
}
#calendar {
	background-color: #fff;
}
#calendar_lead a {
	text-decoration: underline;
}
#calendar_lead a i {
	display: inline-block;
	position: relative;
	vertical-align: bottom;
}
#calendar_lead a i:after {
	content: "　";
}
#calendar_lead a i:before {
	display: block;
	position: absolute;
	width: 0.4em;
	height: 0.4em;
	margin: auto;
	border-top: 1px solid;
	border-right: 1px solid;
	content: "";

	inset: 0;
	rotate: 45deg;
}
#calendar_iframe {
	display: block;
	width: 100%;
	height: 560px;
}
#calendar_head {
	position: relative;
	padding-left: 20px;
	font-family: "Cormorant Garamond", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Noto Serif JP", "MS P明朝", "MS PMincho", serif;
	font-weight: 700;
	letter-spacing: 0.05em;
}
#calendar_head:before {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 0;
	margin: auto 0;
	border-top: 1px solid;
	content: "";
}
@media screen and (min-width: 769px) {
	#calendar_lead {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;

		-webkit-align-items: flex-end;
		        align-items: flex-end;
		-webkit-box-align: end;
		   -moz-box-align: end;
		     -o-box-align: end;
		-ms-flex-align: end;
	}
	#calendar_lead_container {
		padding: 90px 0 30px;
	}
	#calendar_lead_content {
		font-size: 1.4rem;
		line-height: 2.4rem;
	}
	#calendar_head {
		margin-right: 14px;
		font-size: 3rem;
	}
}
@media screen and (max-width: 768px) {
	#calendar_lead_container {
		padding: 70px 0 30px;
	}
	#calendar_lead_content {
		font-size: 1.2rem;
		line-height: 1.8rem;
	}
	#calendar_head {
		margin-bottom: 10px;
		font-size: 2.5rem;
	}
}
#access_head {
	position: relative;
}
#access_head_wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip: rect(0, auto, auto, 0);
}
#access_head_bg {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/top/fv_bg.jpg");
	background-position: center bottom;
	background-size: cover;
	-webkit-transform: translate3d(0, 0, 0);
	   -moz-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	     -o-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}
#access_head_bg:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(63, 70, 77, 0.75);
	content: "";
}
#access_head_inner {
	display: -webkit-box;
	display:    -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         box;
	display:         flex;
	        flex-direction: column;
	position: relative;
	height: 100%;

	-webkit-box-orient: vertical;
	   -moz-box-orient: vertical;
	     -o-box-orient: vertical;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
}
#access_head_text {
	display: block;
	margin: auto 0;
}
#access_head_text {
	display: block;
	position: relative;
	padding-left: 20px;
	color: #fff;
	font-family: "Cormorant Garamond", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Noto Serif JP", "MS P明朝", "MS PMincho", serif;
	font-weight: 700;
}
#access_head_text:before {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 0;
	margin: auto 0;
	border-top: 1px solid;
	content: "";
}
#access_block {
	background-color: #fff;
}
#access_text dl + dl {
	margin-top: 1em;
}
#access_text dt {
	font-family: "Cabinet Grotesk", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
}
#access_text dd {
	color: #414141;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
}
#access_text dd a {
	text-decoration: underline;
}
#access .access_button_label_text {
	font-family: "Cormorant Garamond", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Noto Serif JP", "MS P明朝", "MS PMincho", serif;
	font-weight: 700;
}
@media screen and (min-width: 769px) {
	#access_head {
		height: 300px;
	}
	#access_head_text {
		font-size: 3rem;
	}
	#access_block {
		padding: 100px 0;
	}
	#access_text {
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	#access_text dl {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;
	}
	#access_text dt {
		width: 105px;

		-webkit-flex-shrink: 0;
		        flex-shrink: 0;
	}
	#access_buttons {
		margin-top: 60px;
	}
}
@media screen and (min-width: 1000px) {
	#access_box {
		display: -webkit-box;
		display:    -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         box;
		display:         flex;

		-webkit-align-items: flex-end;
		        align-items: flex-end;
		-webkit-box-align: end;
		   -moz-box-align: end;
		     -o-box-align: end;
		-ms-flex-align: end;
	}
	#access_map {
		width: calc((600 / 1305) * 100%);
		margin-right: calc((40 / 1305) * 100%);
	}
	#access_text_container {
		width: calc((665 / 1305) * 100%);
	}
}
@media screen and (min-width: 769px) and (max-width: 999px) {
	#access_map {
		max-width: 600px;
	}
	#access_text_container {
		margin-top: 60px;
	}
}
@media screen and (max-width: 768px) {
	#access_head {
		height: 200px;
	}
	#access_head_text {
		font-size: 2.5rem;
		line-height: 3rem;
	}
	#access_block {
		padding: 35px 0 70px;
	}
	#access_text {
		font-size: 1.3rem;
		line-height: 2rem;
	}
	#access_text_container {
		margin-top: 30px;
	}
	#access_text dt {
		margin-bottom: 3px;
	}
	#access_buttons {
		margin-top: 40px;
	}
}
@-moz-keyframes splash {
	0% {
		visibility: visible;
		opacity: 1;

		-ms-filter: none;
		    filter: none;
	}
	100% {
		visibility: hidden;
		opacity: 0;

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@-webkit-keyframes splash {
	0% {
		visibility: visible;
		opacity: 1;

		-ms-filter: none;
		    filter: none;
	}
	100% {
		visibility: hidden;
		opacity: 0;

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@-o-keyframes splash {
	0% {
		visibility: visible;
		opacity: 1;

		-ms-filter: none;
		    filter: none;
	}
	100% {
		visibility: hidden;
		opacity: 0;

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@keyframes splash {
	0% {
		visibility: visible;
		opacity: 1;

		-ms-filter: none;
		    filter: none;
	}
	100% {
		visibility: hidden;
		opacity: 0;

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@-moz-keyframes splash_logo {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: none;
		    filter: none;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.5);
		   -moz-transform: scale(1.5);
		    -ms-transform: scale(1.5);
		     -o-transform: scale(1.5);
		        transform: scale(1.5);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@-webkit-keyframes splash_logo {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: none;
		    filter: none;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.5);
		   -moz-transform: scale(1.5);
		    -ms-transform: scale(1.5);
		     -o-transform: scale(1.5);
		        transform: scale(1.5);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@-o-keyframes splash_logo {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: none;
		    filter: none;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.5);
		   -moz-transform: scale(1.5);
		    -ms-transform: scale(1.5);
		     -o-transform: scale(1.5);
		        transform: scale(1.5);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@keyframes splash_logo {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: none;
		    filter: none;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.5);
		   -moz-transform: scale(1.5);
		    -ms-transform: scale(1.5);
		     -o-transform: scale(1.5);
		        transform: scale(1.5);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@-moz-keyframes splash_logo_svg {
	0% {
		-webkit-transform: translateY(100%);
		   -moz-transform: translateY(100%);
		    -ms-transform: translateY(100%);
		     -o-transform: translateY(100%);
		        transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(0);
		   -moz-transform: translateY(0);
		    -ms-transform: translateY(0);
		     -o-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes splash_logo_svg {
	0% {
		-webkit-transform: translateY(100%);
		   -moz-transform: translateY(100%);
		    -ms-transform: translateY(100%);
		     -o-transform: translateY(100%);
		        transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(0);
		   -moz-transform: translateY(0);
		    -ms-transform: translateY(0);
		     -o-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-o-keyframes splash_logo_svg {
	0% {
		-webkit-transform: translateY(100%);
		   -moz-transform: translateY(100%);
		    -ms-transform: translateY(100%);
		     -o-transform: translateY(100%);
		        transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(0);
		   -moz-transform: translateY(0);
		    -ms-transform: translateY(0);
		     -o-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes splash_logo_svg {
	0% {
		-webkit-transform: translateY(100%);
		   -moz-transform: translateY(100%);
		    -ms-transform: translateY(100%);
		     -o-transform: translateY(100%);
		        transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(0);
		   -moz-transform: translateY(0);
		    -ms-transform: translateY(0);
		     -o-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-moz-keyframes fv_bg {
	0% {
		opacity: 1;
		-webkit-transform: scale(1.2);
		   -moz-transform: scale(1.2);
		    -ms-transform: scale(1.2);
		     -o-transform: scale(1.2);
		        transform: scale(1.2);

		-ms-filter: none;
		    filter: none;
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: none;
		    filter: none;
	}
	57% {
		z-index: 10;
		opacity: 0;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@-webkit-keyframes fv_bg {
	0% {
		opacity: 1;
		-webkit-transform: scale(1.2);
		   -moz-transform: scale(1.2);
		    -ms-transform: scale(1.2);
		     -o-transform: scale(1.2);
		        transform: scale(1.2);

		-ms-filter: none;
		    filter: none;
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: none;
		    filter: none;
	}
	57% {
		z-index: 10;
		opacity: 0;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@-o-keyframes fv_bg {
	0% {
		opacity: 1;
		-webkit-transform: scale(1.2);
		   -moz-transform: scale(1.2);
		    -ms-transform: scale(1.2);
		     -o-transform: scale(1.2);
		        transform: scale(1.2);

		-ms-filter: none;
		    filter: none;
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: none;
		    filter: none;
	}
	57% {
		z-index: 10;
		opacity: 0;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
@keyframes fv_bg {
	0% {
		opacity: 1;
		-webkit-transform: scale(1.2);
		   -moz-transform: scale(1.2);
		    -ms-transform: scale(1.2);
		     -o-transform: scale(1.2);
		        transform: scale(1.2);

		-ms-filter: none;
		    filter: none;
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: none;
		    filter: none;
	}
	57% {
		z-index: 10;
		opacity: 0;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		    -ms-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);

		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		    filter: alpha(opacity=0);
	}
}
