@charset "UTF-8";
/* CSS Document */

:root{
	/* color */
	--black:rgba(70,70,70,1);
	--white:rgba(255,255,255,1);
  --gray:rgba(185,190,190,1);
  --ash:rgba(215,220,220,1);
	--screen:rgba(250,252,255,.95);
	--filter:rgba(0,0,0,.5);
	--shadow:rgba(0,0,0,.1);
}

* {
	color: var(--black);
	font-family: dnp-shuei-gothic-gin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	box-sizing: border-box;
	text-decoration: none;
	word-break: normal;
 }
html { height: 100%; }
body {
	height: 100%;
	font-size: 13px;
	text-align: justify;
	line-height: 2;
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,div,dl,dt,dd,ul,li,img,a,p,span,iframe,small,strong,figure,address,select,input,button,textarea,i,b,hr,sub,time,em,mark {
	margin:0;
	padding:0;
	color:inherit;
	font-family: inherit;
	font-size: inherit;
	font-style:inherit;
	font-weight: inherit;
	list-style:none;
	text-align: justify;
	outline:none;
	background: none;
	border: none;
}
select {
	cursor: pointer;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
select::-ms-expand { display: none; }
button { cursor: pointer; }
p { line-height: 2; }
picture { display: block; }
br { line-height: 1; }
sub { bottom: initial; }
img { display: block; }
svg { display: block; }

em { font-family: urw-antiqua, serif; }
small { font-size: 90%; }

::placeholder { color: var(--gray); }
:-ms-input-placeholder { color: var(--gray); }
::-ms-input-placeholder { color: var(--gray); }

br.verWid { display: block !important; }
br.verMid { display: none !important; }
br.verNar { display: none !important; }

.trgNav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	position: fixed;
	top: 50%;
	left: 23px;
	cursor: pointer;
	z-index: 99;
	transform: translate(0,-50%);
	transition: .3s ease-out;
}
.trgNav.verRoot { top: calc(50% - 55px); }
.trgNav hr {
	width: 35px;
	height: 1px;
	background-color: var(--black);
	position: relative;
	transition: .4s ease-out;
}
.trgNav > hr + hr { margin: 6px 0 0 0; }
.trgNav:hover hr:nth-child(1) { transform: translate(-5px,0); }
.trgNav:hover hr:nth-child(2) { transform: translate(5px,0); }
.trgNav hr:before {
	content: '';
	width: 100%;
	height: 1px;
	background-color: var(--white);
	position: absolute;
	bottom: -1px;
	left: -1px;
	z-index: -1;
}

.lang {
	width: 45px;
	height: 60px;
	position: fixed;
	z-index: 99;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%);
	transition: .3s ease-out;
}
.lang.verRoot { top: calc(50% - 60px); }
.lang ul {
	width: 100%;
	height: 100%;
	position: relative;
}
.lang ul li {
	line-height: 1.2;
	position: absolute;
}
.lang ul li:nth-child(1) {
	top: 0;
	left: 5px;
}
.lang ul li:nth-child(2) {
	bottom: 2px;
	right: 2px;
}
.lang ul:before {
	content: '';
	width: 1px;
	height: 42px;
	background-color: var(--gray);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-60%) rotate(45deg); 
}
.lang ul li > * {
	font-size: 11px;
	letter-spacing: .1rem;
	opacity: .65;
	transition: .3s ease-out;
}
.lang ul li > *:hover,
.lang ul li > *.current { opacity: 1; }

.overlayNav {
	display: none;
	width: 100%;
	height: 100%;
	background-color: var(--screen);
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
.overlayNav .frame {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0 0 45px 0;
}
.overlayNav .gloval,
.overlayNav .gloval ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.overlayNav .gloval ul { margin: 50px 0; }
.overlayNav .gloval ul > li + li { margin: 9px 0 0 0; }
.overlayNav .gloval ul li a {
	font-size: 12px;
	letter-spacing: .1rem;
	transition: .3s ease-out;
}
.overlayNav .gloval ul li a:hover { opacity: .65; }
.overlayNav .gloval div { display: flex; }
.overlayNav .gloval div a {
	width: 24px;
	height: 24px;
	transition: .3s ease-out;
}
.overlayNav .gloval div a:hover { opacity: .65; }
.overlayNav .gloval div > a + a { margin: 0 0 0 9px; }
.overlayNav .gloval div a img { width: 100%; }
.trgClose {
	width: 48px;
	height: 48px;
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translate(0,-50%);
}
.trgClose hr {
	width: 100%;
	height: 1px;
	background-color: var(--black);
	position: relative;
	transition: .3s ease-out;
}
.trgClose hr:nth-child(1) { transform: rotate(45deg); }
.trgClose hr:nth-child(2) { transform: rotate(-45deg); }
.trgClose:hover hr:nth-child(1) { transform: rotate(0deg); }
.trgClose:hover hr:nth-child(2) {
	transform: rotate(0deg);
	opacity: 0;
}

.logotype {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 192px;
}
.logotype a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.logotype i { width: 100%; }
.logotype em {
  margin: 20px 0 0 0;
  font-size: 12px;
  letter-spacing: .01rem;
  line-height: 1.2;
  white-space: nowrap;
}
.verGeneral .logotype { width: 188px; }


/* Header ===================== */
header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 45px;
	position: relative;
}
header h1 {}

.pageTitle {
	display: inline-flex;
	margin: 50px 0 0 0;
	position: relative;
}
.pageTitle em {
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: .12rem;
}


/* Main ===================== */
main {}
main section {
	max-width: 1700px;
	margin: auto;
}

.viewmore {
	display: flex;
	position: relative;
}
.viewmore i {
	padding: 0 45px 25px;
	letter-spacing: .08rem;
	line-height: 1.2;
	border-bottom: 1px solid var(--gray);
}

.trgAcordion {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
}
.trgAcordion dt {
	width: 100%;
	height: 32px;
	font-size: 11px;
	letter-spacing: .05rem;
	line-height: 1.2;
	text-align: center;
	border-bottom: 1px solid var(--gray);
	position: relative;
	cursor: pointer;
}
.trgAcordion dt:before {
	content: '';
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
	position: absolute;
	top: 3px;
	right: 15px;
	transform: rotate(135deg);
	transition: .3s ease-out;
}
.trgAcordion dd {
	display: none;
	width: 100%;
	padding: 0 15px;
	background-color: var(--screen);
	box-shadow: 10px 10px 5px 0 var(--shadow);
	position: absolute;
	top: 32px;
	left: 0;
}
.trgAcordion dd p {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	padding: 15px 0;
}
.trgAcordion dd p em {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	padding: 5px 0;
	text-align: center;
	font-size: 11px;
	letter-spacing: .05rem;
	transition: .4s ease-out;
	cursor: pointer;
}
.trgAcordion dd p em:hover { opacity: .6; }
.trgAcordion dd p em:last-child { font-size: 10px; }

.listWorks {}
.listWorks .line ul {
	display: flex;
	flex-wrap: wrap;
}
.listWorks .line ul li {
	width: 33.333%;
	padding: 10px;
}
.listWorks .line ul li > * {
	display: block;
	position: relative;
}
.listWorks .line ul li picture img { width: 100%; }
.listWorks .line ul li div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: var(--filter);
	padding: 50px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	transition: .3s ease-out;
	opacity: 0;
}
.listWorks .line ul li:hover div { opacity: 1; }
.listWorks .line ul li div > * {
	display: block;
	color: var(--white);
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.listWorks .line ul li div h3 {
	padding: 15px 0;
	letter-spacing: .05rem;
}
.listWorks .line ul li div time {
	font-size: 11px;
	letter-spacing: .05rem;
}

.listNews .line ul {
	display: flex;
	flex-wrap: wrap;
}
.listNews .line ul li {
	width: 33.333%;
	padding: 0 12px 55px;
}
.listNews .line ul li > * {
	display: block;
	position: relative;
}
.listNews .line ul li > *:before {
	content: '';
	width: 15px;
	height: 15px;
	border-top: 1px solid var(--gray);
	border-right: 1px solid var(--gray);
	position: absolute;
	bottom: 12px;
	right: 7px;
	transform: translate(0,0) rotate(45deg);
	transition: .3s ease-out;
}
.listNews .line ul li > *:hover:before { right: 0; }
.listNews .line ul li picture { transition: .3s ease-out; }
.listNews .line ul li > *:hover picture { opacity: .75; }
.listNews .line ul li picture img { width: 100%; }
.listNews .line div { padding: 25px 25px 0 0; }
.listNews .line div > * {
	display: block;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: .03rem;
	white-space: nowrap;
	overflow-y: hidden;
	text-overflow: ellipsis;
}
.listNews .line div time {
	padding: 12px 0 0 0;
	font-size: 12px;
	letter-spacing: .05rem;
}
.listWorks .year {
	display: block;
	margin: 15px 0;
	letter-spacing: .05rem;
	text-align: center;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 125px 0 50px 0;
}
.pagination ul {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.pagination ul li {
	padding: 0 5px;
	font-size: 11px;
}
.pagination ul li hr {
  width: 4px;
  height: 4px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  position: relative;
  top: 1px;
}
.pagination ul li:first-child,
.pagination ul li:last-child { margin: 0 15px; }
.pagination ul li:first-child hr { transform: rotate(225deg); }
.pagination ul li:last-child hr { transform: rotate(45deg); }

.scrollButton {
	width: 30px;
	height: 30px;
}
.scrollButton button {
	width: 100%;
	height: 100%;
	position: relative;
}
.scrollButton button hr {
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--gray);
  border-right: 1px solid var(--gray);
	position: absolute;
	top: 50%;
	left: 50%;
	transition: .3s ease-out;
}
.scrollButton.verUp { transform: scaleY(1.5); }
.scrollButton.verUp button hr { transform: translate(-50%,-25%) rotate(-45deg); }
.scrollButton.verUp:hover button hr { transform: translate(-50%,-60%) rotate(-45deg); }

.verticalLine {
	width: 1px;
	height: 100%;
	background-color: var(--ash);
	position: fixed;
	top: 0;
}
.verticalLine.verLeft { left: 98px; }
.verticalLine.verRight { right: 98px; }

/* Footer ===================== */
footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 125px 0;
}
footer h2 {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 75px 0 0 0;
}
footer h2 > * {
	display: flex;
	align-items: center;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: .03rem;
	position: relative;
}
footer h2 b { padding: 0 5px; }


@media (max-width: 1080px) {

.logotype { width: 185px; }
.logotype em { font-size: 11px; }

.listWorks .line ul li { width: 50%; }
.listNews .line div { padding: 25px 0 0 0; }
.listNews .line ul li > *:before { display: none; }
.listNews .line ul li { width: 50%; padding: 0 12px 55px; }
.verticalLine.verLeft { left: 95px; }
.verticalLine.verRight { right: 95px; }

}


@media (max-width: 840px) {}


@media (max-width: 640px) {

body { font-size: 12px; }

br.verWid { display: none !important; }
br.verMid { display: none !important; }
br.verNar { display: block !important; }

.trgNav,
.trgNav.verRoot {
	width: 40px;
	height: 45px;
	left: initial;
	transform: translate(0,0);
}
.trgNav {
	top: 30px;
	right: 25px;
}
.trgNav.verRoot {
	top: 15px;
	right: 12px;
}
.trgNav hr { width: 35px; }
.trgNav > hr + hr { margin: 5px 0 0 0; }
.lang { display: none; }

.overlayNav {}
.overlayNav .frame {
	align-items: flex-start;
	padding: 0 45px 45px;
}
.overlayNav .lang {
	display: block;
	width: 60px;
	margin: 30px 20px 0;
	height: initial;
	position: initial;
	transform: translate(0,0);
}
.overlayNav .lang ul {
	display: flex;
	justify-content: space-between;
}
.overlayNav .lang ul:before {
	height: 15px;
	left: 45%;
	transform: translate(-50%,-50%) rotate(50deg);
}
.overlayNav .lang ul li { position: initial; }
.overlayNav .lang ul li > * {
	font-size: 11px;
	letter-spacing: .1rem;
}
.overlayNav .gloval, .overlayNav .gloval ul { align-items: flex-start; }
.overlayNav .gloval { padding: 0 20px; }
.overlayNav .gloval ul { margin: 30px 0 32px; }
.overlayNav .gloval ul > li + li { margin: 8px 0 0; }
.overlayNav .gloval ul li a { letter-spacing: .05rem; }
.overlayNav .gloval div a {
	width: 21px;
	height: 21px;
}
.overlayNav .gloval div > a + a { margin: 0 0 0 8px; }
.trgClose {
	width: 40px;
	height: 40px;
	left: initial;
	right: 25px;
}
.trgClose hr {
	width: 40px;
	height: .5px;
}

.logotype { width: 135px; }
.logotype em {
	margin: 18px 0 0 5px;
	font-size: 9.5px;
}

header {
	justify-content: flex-start;
	align-items: flex-start;
	padding: 25px 15px 15px;
}

header.verGeneral { padding: 30px 20px; }
.verGeneral .logotype {
	width: calc(100% - 60px);
	align-items: flex-start;
}
.verGeneral .logotype a { width: auto; }
.verGeneral .logotype i { width: 130px; }
.verGeneral .logotype em {
	margin: 10px 0 0 5px;
	font-size: 8px;
}

.pageTitle { margin: 50px auto 0 auto; }
.pageTitle em { font-size: 13px; }

.trgAcordion { margin: 15px 0 0 0; }
.trgAcordion dt { font-size: 10px; }
.trgAcordion dt:before {
	width: 4px;
	height: 4px;
	top: 2px;
}
.trgAcordion dd { box-shadow: 5px 5px 5px 0 var(--shadow); }
.trgAcordion dd p { padding: 12px 0; }
.trgAcordion dd p em { font-size: 10px; }

.listWorks .line ul {}
.listWorks .line ul li,
.listNews .line ul li {
	width: 100%;
	padding: 0 0 50px;
}

.listWorks .line ul li div,
.listNews .line ul li div { padding: 0; }
.listWorks .line ul li div {
	height: auto;
	background-color: initial;
	position: initial;
	opacity: 1;
}
.listWorks .line ul li div > * { color: var(--black); }
.listWorks .line ul li div time {
 font-size: 9px;
 letter-spacing: .02rem;
}
.listWorks .line ul li div h3,
.listNews .line ul li div h3 {
	padding: 20px 0 10px;
	font-size: 12px;
	letter-spacing: .02rem;
}
.listNews .line div time {
	padding: 3px 0 0 0;
	font-size: 10px;
	letter-spacing: .05rem;
}

.pagination { margin: 50px 0 25px 0; }
.pagination ul li { font-size: 9px; }

.scrollButton {
	width: 25px;
	height: 25px;
}
.scrollButton button hr {
	width: 15px;
	height: 15px;
}

.verticalLine { display: none; }

footer { padding: 30px 0 150px 0; }
footer h2 { margin: 40px 0 0 0; }
footer h2 > * {
	font-size: 10px;
	letter-spacing: 0;
}
footer h2 b { padding: 0 4px; }

}

