@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Serif JP', serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: #282828;
	text-decoration: none;
}
a:visited {
	color: #282828;
}
a:hover {
	color: #282828;
}
a:active {
	color: #282828;
}
a, a img {
	-webkit-transition: .3s;
	transition: .3s;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1000px;
	min-height: 100vh;
	color: #282828;
	font-size: 1.4rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
	animation: fadeShow 1s forwards;
	opacity: 0;
	position: relative;
}
body > .pageBg .para,
body > .pageBg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
body > .pageBg .para::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 2s linear,transform 6s ease-out;
	content: "";
}
body.loadover > .pageBg .para::before {
	opacity: 1;
	transform: scale(1);
}
@keyframes fadeShow {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
body.fixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	overflow-y: scroll;
}
#container {
	padding-top: 113px;
	text-align: left;
	overflow: hidden;
	position: relative;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 767px) {
	body {
		min-width: inherit;
		font-size: 1.3rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
	#container {
		padding-top: 72px;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	padding: 35px 115px 35px 38px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	z-index: 100;
}
#gHeader .hBox {
	display: flex;
	justify-content: space-between;
}
#gHeader .logo {
	font-weight: normal;
	font-size: 1.3rem;
}
#gHeader .logo span {
	margin: 10px 0 0 87px;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0.085em;
}
@media all and (max-width: 767px) {
	#gHeader {
		padding: 17px 0 0;
	}
	#gHeader .logo {
		text-align: center;
		font-size: 0.8rem;
	}
	#gHeader .logo img {
		width: 80px;
		height: 30px;
	}
	#gHeader .hBox {
		display: block;
	}
	#gHeader .logo span {
		margin: 13px 0 0 0;
		letter-spacing: 0.05em;
		display: block;
	}
}



.menu {
	position: fixed;
	top: 34px;
	right: 38px;
	height: 20px;
	width: 38px;
	cursor: pointer;
	z-index: 1000;
	transition: opacity .25s ease;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.menu.active {
	position: fixed;
}
.menu.active .top {
	-webkit-transform: translateY(2px) translateX(0) rotate(-30deg);
	-ms-transform: translateY(2px) translateX(0) rotate(-30deg);
	transform: translateY(2px) translateX(0) rotate(-30deg);
	background: #5F5F5F !important;
}
.menu.active .middle {
	opacity: 0;
	background: #5F5F5F;
}
.menu.active .bottom {
	-webkit-transform: translateY(-2px) translateX(0) rotate(30deg);
	-ms-transform: translateY(-2px) translateX(0) rotate(30deg);
	transform: translateY(-2px) translateX(0) rotate(30deg);
	background: #5F5F5F !important;
}
.menu span {
	background: #5F5F5F;
	border: none;
	height: 1px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
}
.menu span:nth-of-type(2) {
	opacity: 0;
}
.menu span:nth-of-type(3) {
	top: 5px;
}
@media all and (max-width: 767px) {
	.menu {
		top: 20px;
		right: 22px;
	}
}


/* menuBox */
.menuBox {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	overflow-y: auto;
	background-color: #fff;
	z-index: 900;
	display: none;
}
.menuBox .innerBox {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px;
}
.menuBox .subBox {
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	padding: 50px 0 65px;
}
.menuBox .logo {
	margin-bottom: 94px;
	text-align: center;
}
.menuBox .logo span {
	display: block;
	font-size: 1.1rem;
	margin-top: 28px;
	letter-spacing: 0.07em;
}
.menuBox .naviUl {
	font-size: 1.8rem;
	text-align: center;
	letter-spacing: 0.03em;
}
.menuBox .naviUl a {
	display: inline-block;
}
.menuBox .naviUl li {
	margin-bottom: 30px;
}
.menuBox .naviUl li:last-child {
	margin-bottom: 0;
}
.menuBox .naviUl .on a {
	opacity: 0.4;
}
@media all and (min-width: 768px) {
	html:not(.isPad) .menuBox .naviUl a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 767px) {
	.menuBox .naviUl {
		font-size: 1.7rem;
	}
	.menuBox .logo {
		margin-bottom: 82px;
	}
	.menuBox .naviUl li {
		margin-bottom: 24px;
	}
	.menuBox .subBox {
		padding: 41px 0 43px;
	}
}

/* loadingBox */
.loadingBox {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000000;
	content: "";
	z-index: 10000;
}
.loadingBox.white {
	background-color: #fff;
}
.loadingBox .innerBox {
	width: 254px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.loadingBox .logo {
	margin-bottom: 156px;
}
@media all and (max-width: 767px) {
	.loadingBox .innerBox {
		width: 149px;
	}
	.loadingBox .logo {
		margin-bottom: 148px;
	}
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	margin-top: 169px;
	padding-bottom: 36px;
	text-align: center;
}
#gFooter .fNavi {
	margin-bottom: 109px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 1.6rem;
}
#gFooter .fNavi li {
	margin: 0 22px;
	letter-spacing: 0.05em;
}
#gFooter .fNavi .on a {
	opacity: 0.4;
}
@media all and (min-width: 768px) {
	html:not(.isPad) #gFooter .fNavi a:hover {
		opacity: 0.7;
	}
	html:not(.isPad) #gFooter .pageTop a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 767px) {
	#gFooter {
		margin-top: 79px;
		padding-bottom: 40px;
	}
	#gFooter .fNavi li {
		margin: 0 0 29px;
		letter-spacing: 0.08em;
	}
	#gFooter .fNavi {
		margin-bottom: 67px;
		display: block;
	}
	#gFooter .fNavi li:last-child {
		margin-bottom: 0;
	}
}
@media all and (max-width: 374px) {
	#gFooter .fNavi li {
		margin: 0 10px;
	}
}


/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	max-width: 800px;
	width: calc(100% - 120px);
	box-sizing: border-box;
}
@media all and (max-width: 767px) {
	.content {
		margin: 0 20px;
		max-width: inherit;
		width: auto;
	}
}


/* comList */
.comList {
	border-top: 1px solid #313131;
}
.comList li {
	border-bottom: 1px solid #CBCBCB;
}
.comList a {
	padding: 25px 0 23px;
	width: 100%;
	display: flex;
	box-sizing: border-box;
}
.comList .flexTxt {
	width: 70.9%;
	display: block;
	font-size: 1.5rem;
}
.comList .ttl {
	font-size: 1.9rem;
	width: 75%;
	letter-spacing: 0.1em;
}
.comList .txt {
	margin-top: 6px;
		letter-spacing: 0.02em;
		display: block;
		font-size: 1.2rem;
}
.comList .name {
	flex: 1;
	letter-spacing: 0.2rem;
	font-size: 1.7rem;
		text-align: right;
}
.comList .name span {
	margin: 9px 0 0 0;
		display: block;
		font-size: 1.1rem;
		letter-spacing: 0.03em;
}




@media all and (min-width: 768px) {
	html:not(.isPad) .comList a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 767px) {
	.comList .flexTxt {
		display: block;
		font-size: 1.5rem;
	}
	.comList .name span {
		margin: 9px 0 0 0;
		display: block;
		font-size: 1rem;
		letter-spacing: 0.03em;
	}
	.comList .name {
		letter-spacing: 0.1rem;
		font-size: 1.4rem;
		text-align: right;
	}
	.comList .txt {
		margin-top: 6px;
		letter-spacing: 0.02em;
		display: block;
		font-size: 1rem;
	}
	.comList .ttl {
		font-size: 1.5rem;
		width: auto;
		display: block;
		letter-spacing: 0.07em;
	}
	.comList a {
		padding: 19px 0 20px;
	}
}
@media all and (max-width: 374px) {
	.comList .ttl {
		letter-spacing: 0;
	}
}


.center {
	text-align: center;
}


/* headLine01 */
.headLine01 {
	margin-bottom: 51px;
	font-size: 3.0rem;
	font-weight: normal;
	letter-spacing: 0.04em;
}

.headLine01 span {
	margin-bottom: 3px;
	font-size: 1.6rem;
	font-weight: normal;
	letter-spacing: 0.04em;
}

.headLine01.small {
	margin-bottom: 23px;
	font-size: 1.3rem;
}
@media all and (max-width: 767px) {
	.headLine01 {
		margin-bottom: 35px;
		font-size: 2rem;
	}
	.headLine01.small {
		margin-bottom: 26px;
		font-size: 1.4rem;
	}
}


/* headLine02 */
.headLine02 {
	margin-bottom: 36px;
	padding-bottom: 27px;
	font-size: 1.5rem;
	text-align: center;
	position: relative;
	font-weight: normal;
	letter-spacing: 0.1em;
}
.headLine02::before {
	width: 56px;
	height: 1px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background-color: #707070;
	content: "";
}
@media all and (max-width: 767px) {
	.headLine02 {
		margin-bottom: 21px;
		padding-bottom: 19px;
		font-size: 1.3rem;
	}
}


/* moreBtn */
.moreBtn {
	margin-top: 45px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1;
}
.moreBtn a {
	padding-bottom: 8px;
	min-width: 173px;
	display: inline-block;
	border-bottom: 1px solid #707070;
	box-sizing: border-box;
}
@media all and (min-width: 768px) {
	html:not(.isPad) .moreBtn a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 767px) {

}



/* comList02 */
.comList02 {
	margin: -91px -27px 0 -26px;
	display: flex;
	flex-wrap: wrap;
}
.comList02 li {
	margin-top: 91px;
	padding: 0 27px 0 26px;
	width: 25%;
	font-size: 1.3rem;
	line-height: 1.9;
	letter-spacing: 0.05em;
	box-sizing: border-box;
}
.comList02 a {
	display: block;
}
.comList02 .image {
	margin-bottom: 14px;
	padding-bottom: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.comList02 .num {
	margin-bottom: 16px;
	color: #ACACAC;
	font-size: 1.8rem;
	line-height: 1;
}
@media all and (min-width: 768px) {
	html:not(.isPad) .comList02 a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 767px) {
	.comList02 {
		margin: -26px -1px 0;
		justify-content: space-between;
	}
	.comList02 li {
		margin-top: 26px;
		padding: 0;
		width: calc(50% - 8px);
		font-size: 1.1rem;
		line-height: 1.69;
		letter-spacing: 0.05em;
	}
	.comList02 .image {
		margin-bottom: 11px;
	}
}


/* pageVisual */
.pageVisual {
	margin: 0 auto 251px;
	padding-top: 40px;
	width: 94%;
	max-width: 1136px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pageVisual .photo {
	width: calc(50% + 338px);
	position: relative;
}
.pageVisual .photo::after {
	width: 364px;
	height: 100%;
	position:absolute;
	top: 0;
	right: 0;
	background: url(../img/archives/01/main_bg.png) no-repeat left top / 100% 100%;
	content: "";
}
.pageVisual .photo img {
	width: 100%;
}
.pageVisual .rightBox {
	margin: 8px 20px 0 -300px;
	flex: 1;
	font-weight: normal;
	font-size: 1.6rem;
	text-align: right;
	line-height: 1.43;
	position: relative;
	z-index: 10;
	color: #000;
}
.pageVisual .rightBox .en {
	font-size: 1rem;
	display: block;
}
.pageVisual .rightBox .title {
	letter-spacing: 0.1em;
	font-weight: normal;
}
.pageVisual .rightBox .title .en {
	margin-top: 11px;
	letter-spacing: 0.1em;
}
.pageVisual .time {
	margin-bottom: 85px;
	font-size: 2.5rem;
	line-height: 1;
	letter-spacing: 0.1em;
}
.pageVisual .time .num {
	margin-bottom: 16px;
	opacity: 0.08;
	display: block;
	font-size: 8rem;
	letter-spacing: 0;
}
.pageVisual .name {
	margin: 0 -5px 107px 0;
	font-size: 2rem;
	letter-spacing: 0.37em;
	line-height: 1.9;
}
.pageVisual .name .en {
	margin-bottom: 18px;
	font-size: 2.5rem;
	letter-spacing: 0.25em;
}
@media all and (max-width: 767px) {
	.pageVisual {
		margin-bottom: 155px;
		padding-top: 15px;
		width: auto;
		max-width: inherit;
		display: block;
	}
	.pageVisual .rightBox {
		margin: -38px 27px 0;
		font-size: 1.5rem;
		line-height: 1.4;
	}
	.pageVisual .photo {
		width: auto;
	}
	.pageVisual .photo::after {
		display: none;
	}
	.pageVisual .time {
		margin: 0 -5px 37px;
		font-size: 2rem;
	}
	.pageVisual .time .num {
		margin-bottom: 7px;
		color: #d2d2d2;
		font-size: 6.5rem;
		opacity: 0.6;
	}
	.pageVisual .name .en {
		margin-bottom: 9px;
		font-size: 2.1rem;
		letter-spacing: 0.15em;
	}
	.pageVisual .name {
		margin: 0 -9px 41px 0;
	}
	.pageVisual .rightBox .title {
		margin: 0 -4px;
	}
	.pageVisual .rightBox .title .en {
		margin-top: 9px;
		letter-spacing: 0.1em;
	}
}

/* exhibitionBox */
.exhibitionBox {
	max-width: 1234px;
}
.exhibitionBox .headLine01 {
	margin-bottom: 110px;
	font-size: 2.4rem;
	text-align: center;
}
@media all and (max-width: 767px) {
	.exhibitionBox .headLine01 {
		margin-bottom: 44px;
		font-size: 1.6rem;
	}
}

/* pageshow */
body.hidepage #container #gFooter,
body.hidepage #container #main {
	opacity: 0;
}
body #container #gFooter,
body #container #main {
	opacity: 1;
	transition: opacity .3s;
}
/* fadein */
.fadeInAnim {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: opacity .8s cubic-bezier(0.23, 1, 0.32, 1), transform .8s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform .8s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity .8s cubic-bezier(0.23, 1, 0.32, 1), transform .8s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform .8s cubic-bezier(0.23, 1, 0.32, 1);
}
.fadeInAnim.fadelazy {
    transition: 1.2s linear;
}
.fadeInAnim.visible {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}



/* comImgList */
.comImgList {
	margin: 100px 0 150px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.comImgList li {
	margin-top: 56px;
	width: calc(50% - 26px);
	font-size: 1.0rem;
	line-height: 1.41;
}
.comImgList .wid {
	width: 100%;
}
.comImgList .image {
	margin-bottom: 19px;
}
.comImgList .image img {
	width: 100%;
}
.comImgList .jp {
	margin-top: 20px;
	letter-spacing: 0.05em;
	display: block;
	font-size: 1.2rem;
	line-height: 1.7;
}
.comImgList .en {
	margin-top: 7px;
	letter-spacing: 0.05em;
	display: block;
	font-size: 1rem;
	line-height: 1.7;
}
@media all and (max-width: 767px) {
	.comImgList {
		margin: 89px 0 91px;
		display: block;
	}
	.comImgList li {
		margin: 0 0 48px;
		width: auto;
	}
	.comImgList li:last-child {
		margin-bottom: 0;
	}
	.comImgList .image {
		margin-bottom: 7px;
	}
	.comImgList .wid .image {
		margin: 0 -20px 8px;
	}
	.comImgList .wid .en {
		margin-top: 2px;
	}
	.comImgList .en {
		margin-top: 6px;
		letter-spacing: 0.05em;
		font-size: 1.1rem;
		line-height: 1.63;
	}
	.comImgList p {
		letter-spacing: 0 !important;
	}
}