@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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea {
	margin: 0;
	padding: 0;
}

ol, ul {
    list-style:none;
	text-decoration:none;
}

table {
    border-collapse: collapse;
    border-spacing:0;
}

caption, th {
    text-align: left;
}
a {
	color: #333 !important;
	text-decoration: none !important;
	transition-property: all;
  transition: 0.3s linear;
	display: block;
}
a:hover{
	color: #333 !important;
	text-decoration: none !important;
	opacity: 0.7;
}
a:focus {
	outline:none;
}

.both {
	clear:both;
}

.inline_block {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	background: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	outline: none;
}
p{
	color: #333 !important;
	line-height: 1.6;
	margin: 0 !important;
	padding: 0 !important;
}

@media (max-width: 992px) {
.sp_none{
	display: none !important;
}
}
@media (min-width: 992px) {
.pc_none{
	display: none !important;
}
}

/* ===========================================
object-fit
============================================= */
.fit {
  width: 100%;
  height: 600px !important;
  object-fit: cover;
	object-position: center;
    font-family: "object-fit: cover; object-position: center;"
}
.fit2 {
  width: 100%;
  object-fit: cover;
	object-position: center;
    font-family: "object-fit: cover; object-position: center;"
}
.fit3 {
  width: 100%;
  object-fit: cover;
	object-position: center;
    font-family: "object-fit: cover; object-position: center;"
}
@media (max-width: 992px) {
	.fit {
  width: 100%;
  height: 400px !important;
  object-fit: cover;
	object-position: center;
    font-family: "object-fit: cover; object-position: center;"
}
	.sp_fit {
  width: 100%;
  height: 400px !important;
  object-fit: cover;
	object-position: center;
    font-family: "object-fit: cover; object-position: center;"
}
}
/* ===========================================
ローディング
============================================= */
html, body{
	width: 100%;
	height: 100%;
	background: #fff !important;
}
.loadingWrap{
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff !important;
	z-index: 999;
}
.loadingWrap img{
	position: absolute;
	top: 50%;
	left: 50%;
margin-top: -10px/*画像の大きさの半分を引く*/;
margin-left: -80px/*画像の大きさの半分を引く*/;
	background: #fff !important;
	z-index: 999;
}
/* ===========================================
bootstrapガター調整
============================================= */
.no-gutters {
  margin-right: 0;
  margin-left: 0;

  > .col,
  > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}
/* ===========================================
スクロールアニメーション
============================================= */
/*fade*/
.fade-container{
    opacity: 0;
    transition: all .5s .3s ease;
}
/*横並びの場合*/
.fade-container2{
    opacity: 0;
    transition: all .7s .5s ease;
}
.fade-container3{
    opacity: 0;
    transition: all .9s .7s ease;
}
@media (max-width: 992px) {
/*横並びのfade直す*/
.fade-container{
    opacity: 0;
    transition: all .5s .3s ease !important;
}
.fade-container2{
    opacity: 0;
    transition: all .5s .3s ease !important;
}
.fade-container3{
    opacity: 0;
    transition: all .5s .3s ease !important;
}
}
/*画像reveal*/
.img-container{
    overflow: hidden;
    position: relative;
}
.img-container__img{
    display: block;
    opacity: 0;
    position: relative;
    transition:all .5s .3s ease; 
    z-index: 0;
}
.img-container:before{
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transform: translateX(-100%);
    transition:all .8s 0s ease; 
    width: 100%;
    z-index: 1;     
}
/*アニメーションするプロパティを設定します*/
.fade-container.active{
    opacity: 1;
}
.fade-container2.active{
    opacity: 1;
}
.fade-container3.active{
    opacity: 1;
}
.img-container.active img{
    opacity: 1;
}
.img-container.active:before{
    transform: translateX(100%);
}
/* ===========================================
headerナビ
============================================= */
header {
  height: 60px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  transition: 0.8s;
	background: #fff;
	border-bottom: 1px solid #000;
	/*background: #fff;
opacity: 0.7;*/
}
header.add-bg {
  background: #fff;
}
header.nav-up {
  top: -120px;
}
header.menu-open {
  top: 0px;
  background: none;
}
header .container {
  height: 100%;
  width: 95%;
  position: relative;
}
header .container .logo {
  display: block;
  position: absolute;
  top: 45%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
header .container .logo a {
  text-transform: uppercase;
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}
header .container .secondary-nav {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10em;
}
header .container .secondary-nav.hidden {
  display: none;
}
header .container .secondary-nav li {
  display: inline-block !important;
  margin-left: 20px;
}
header .container .secondary-nav li a {
	color: #000 !important;
  /*color: white;*/
  text-transform: uppercase;
  /*font-weight: bold;*/
  font-size: 16px;

}
header .container .secondary-nav li a:hover {
  text-decoration: underline;
}

#menu .box {
  position: fixed;
  text-align: center;
  overflow-x: hidden;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#menu .box.is-open {
  z-index: 14;
  opacity: 1;
}

#menu ul {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

#menu li {
  display: block;
  margin: 20px;
}

#menu li a {

  padding: 20px;
  text-decoration: none;
  font-size: 20px;
  color: #fff !important;
	text-align: center;
	display: block;
	
	font-weight: bold;

font-family: 'Ubuntu', sans-serif;

letter-spacing: 10px;

}

#menu li a:hover {
  border-color: #fff;
}

.nav-icon {
	
  position: absolute;
  /*width: 50px;*/
  height: 50px;
  top: 50%;
  right: 0;
  cursor: pointer;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav-icon.open .burger {
  background: none;
	
}

.nav-icon.open .burger:before, .nav-icon.open .burger:after {
  top: 0;
	background: #fff !important;
	color: #fff !important;
}

.nav-icon.open .burger:before {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-icon.open .burger:after {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-icon:hover:not(.open) .burger:before {
  top: -15px;
}

.nav-icon:hover:not(.open) .burger:after {
  top: 15px;
}

.burger, .burger:before, .burger:after {
  width: 30px;
  height: 2px;
	background: #000;
  /*background: #333;*/
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.burger {
  position: relative;
  margin: 23px auto 0;
}

.burger:before, .burger:after {
  content: "";
  position: absolute;
}

.burger:before {
  top: -12px;
}

.burger:after {
  top: 12px;
}

.menu-open .logo{
	display: none !important;
}
/* ===========================================
見出し
============================================= */
h1 {
	 font-weight: bold;color: #333 !important; margin-bottom: 50px !important;font-family: 'Ubuntu', sans-serif; font-size:30px !important; letter-spacing:10px;
	text-align: left;
	word-wrap: break-word;
}
@media (max-width: 992px) {
h1 {
    font-size: 24px !important;
}
}
/* ===========================================
ボタン
============================================= */
p.botan {
margin-top: 50px !important;
margin-bottom: 0px !important;
	clear: both;
}
p.botan a {
	font-family: 'Ubuntu', sans-serif;
	border: 2px solid #000;
	color: #000 !important;
	padding:10px;
	text-align: center;
	font-weight: bold;
	border-radius: 6px;
	  letter-spacing: 2px;
text-indent:2px;
	 -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
	display: block;
}
p.botan a:hover {
	border: 2px solid #000;
	background: #000;
	color: #fff !important;
	opacity: 1;
}

p.botan2 {
margin-top: 50px !important;
margin-bottom: 0px !important;
	clear: both;
}
p.botan2 a {
	font-family: 'Ubuntu', sans-serif;
	border: 2px solid #fff;
	color: #fff !important;
	padding:10px;
	text-align: center;
	font-weight: bold;
	border-radius: 6px;
	  letter-spacing: 2px;
text-indent:2px;
	 -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
	display: block;
}
p.botan2 a:hover {
	border: 2px solid #fff;
	background: #fff;
	color: #333 !important;
	opacity: 1;
}
/* ===========================================
アイキャッチスライダー
============================================= */
.eyecatch_slider_wrapper{
margin-top: 30px;
}
h3 {
	 font-weight: bold;color: #fff !important; font-family: 'Ubuntu', sans-serif; font-size: 50px !important; letter-spacing:10px;
	text-align: left;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 40px !important;
    height: 40px !important;
}
.carousel-caption{
    color: #fff !important;
    text-align: left !important;
	
}
.carousel-caption p{
    color: #fff !important;
    text-align: left !important;
	font-weight: bold;
}
/* ===========================================
ニュース
============================================= */
.news_wrapper{
}
.news{
	background: #333;padding-top: 50px;padding-bottom: 50px;
	text-align:left;
}
.news .row {
	color: #fff; margin-bottom: 10px;
}
.news .row .time{
	font-weight: bold; color: #fff !important; font-family: 'Ubuntu', sans-serif; letter-spacing: 4px;
}
.news .row .newsinfo{
	color: #fff !important;
}
.news .row .newsinfo a{
	color: #fff !important;
}
@media (max-width: 992px) {
	.news .row .time{
		margin-bottom: 10px !important;
}
}
/* ===========================================
アバウト
============================================= */
.about_wrapper{
}
.about{
	background: #F1F1F1;padding-top: 50px;padding-bottom: 50px;
	text-align:left;
}
@media (max-width: 992px) {
	.about_wrapper img{
		margin-bottom: 30px !important;
}
}
/* ===========================================
アーティスト
============================================= */
.artist_wrapper{
}
@media (max-width: 992px) {
	.artist_wrapper img{
		margin-bottom: 10px !important;
}
}
.artist{
	background: #fff;padding-top: 50px;padding-bottom: 50px;
	text-align:left;
}

.artist_title {
	
}
.artist_title a{
	font-weight: bold;
font-size: 20px;
line-height: 1 !important;
margin-bottom: 10px !important;
}
.artist_title2 {
	
}
.artist_title2 a{
	font-size: 18px;
	
}
/* ===========================================
アクセス
============================================= */
.map_wrapper{
}
.map{
	background: #f1f1f1;padding-top: 50px;padding-bottom: 50px;
	text-align:left;
}
.map_title{
	font-weight: bold;
}
.map p a{
color: #0056b3 !important;
}
.map-responsive{
	margin-top: 50px;
    overflow:hidden;
    padding-bottom:50%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
/* ===========================================
アーティスト情報
============================================= */
.artistinfo_wrapper{
}
@media (max-width: 992px) {
	.artistinfo_wrapper img{
		margin-bottom: 30px !important;
	}
	.botan {
		margin-top: 0px !important;
}
}
.artistinfo{
	padding-top: 100px !important;
	background: #333;padding-top: 50px;padding-bottom: 50px;
	text-align:left;
	color:#fff !important;
}
.artistinfo h1{
	color:#fff !important;
}

.artistinfo p{
	color:#fff !important;
}
.artistinfo img{
text-align: center !important
}
.name {
	font-weight: bold; margin-bottom: 30px !important;
	color:#fff !important;
}

/* ===========================================
展示会情報
============================================= */
.exhibitions_wrapper{
}
.exhibitions{
	background: #fff;padding-top: 50px;padding-bottom: 50px;
	text-align:left;
}
/* ===========================================
アートワークス
============================================= */
.artworks_wrapper{
}
.artworks{
	background: #f1f1f1;
	padding-top: 50px !important;
	padding-bottom: 50px !important;
	text-align:left;
}
.grey {
	background: #F1F1F1;
}
/* ===========================================
アバウトページ
============================================= */
.second{
		padding-top: 100px !important;
}









/* ===========================================
フッター
============================================= */
footer{
	text-align: center;
	padding: 30px;
}




.t_art{
	margin-bottom: 30px !important;
	text-align: left;
	font-size: 18px !important;
}
.t_art img{
	margin-bottom: 10px;
}
.t_art .genga a{
	font-weight: bold !important;
}



.parent {
  display: -webkit-flex;
   display: flex;
	justify-content: space-between;
	background: #f1f1f1; padding: 20px !important; border-radius: 6px;margin-bottom: 30px !important; 
}
.parent p{
	font-weight: bold;
}

.parent p a{
	font-weight: bold;
}
@media (max-width: 992px) {
.parent a{
	display: none !important;
	}
}
























.container2 {
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 769px) {
  .container2 {
    /*width: 800px;*/
  }
}

@media all and (min-width: 769px) {
  .alternate-layout {
    display: flex;
   /* height: 100vh;*/
  }
}
.alternate-layout ~ .alternate-layout {
  margin-top: 64px;
}
@media all and (min-width: 769px) {
  .alternate-layout.alternate-layout--reverse {
    flex-direction: row-reverse;
  }
}
@media all and (min-width: 769px) {
  .alternate-layout.alternate-layout--reverse .alternate-layout__detail {
    margin-left: auto;
    margin-right: -10%;
  }
}

.alternate-layout__img {
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media all and (min-width: 769px) {
  .alternate-layout__img {
    height: 500px;
    width: 70%;
  }
}

.alternate-layout__detail {
  width: 100%;
  margin-top: -100px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 20px;
  background-color: #333;
}
@media all and (min-width: 769px) {
  .alternate-layout__detail {
    width: 70%;
    height: 70%;
    margin-top: 30px;
    margin-left: -10%;
  }
}

.alternate-layout__heading {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
	border-bottom: 1px solid #fff;
padding-bottom: 20px;
}

.alternate-layout__btn {
  margin-top: 50px;
}

.btn {
  display: inline-block;
  padding: 3px 5px;
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
}








.menu, .menu span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  box-sizing: border-box;
}

.menu {
  position: fixed;
  top: 20px;
  left: 25px;
  width: 35px;
  height: 22px;
  z-index: 10;
}

.menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  z-index: 10;
}

.menu span:nth-of-type(1) {
  top: 0px;
}

.menu span:nth-of-type(2) {
  top: 10px;
}

.menu span:nth-of-type(3) {
  bottom: 0px;
}

.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

.menu.active span:nth-of-type(2) {
  opacity: 0;
}

.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}

#nav.active {
  right: 0;
  opacity: 1;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

#nav ul {
  margin: 20px 0;
  padding: 20px 0;
}

#nav ul li {
  list-style-type: none;
}

#nav ul li a {
  display: block;
  padding: 20px 0;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  color: #333;
}

#nav ul li a:hover {
  color: #f65d5d;
}



