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

body{
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
}
header {
  padding:10px;
	background-color: rgba(255,255,255,0.20);
	width:25px;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 2px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.navi{
	padding: 20px;
	list-style: none;
	font-size: 200%;
	line-height: 1.2em;
}
.navi a{
	text-decoration: none;
	color: #000;
}
.navi a:hover{
	color: #888;
	
}
.language_nav{
	padding-left: 15px;
}
.sns_nav_bottom{
	padding-left: 0px;
}
.language_btn {
	float: left;
	text-decoration: none;
	list-style-type: none;
	margin-right: 10px;
}
.language_btn a {
	color: #000;
    text-decoration: none;
	padding: 10px;
}
.language_btn a:hover{
	color: #888;
}
.artiste{
	position: absolute;
	top: 50%;
  left: 15%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
	color: #FFFFFF;	
}
.parajp{
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	font-size: 80%;
}
.jptext{
	font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
	font-size: 80%;
}
.h1_sub{
	font-size: 200%;
	font-weight: 400;
}
.h1main{
	font-size: 350%;
	font-weight: 400;
	font-family: 'Italianno', cursive;
}

.wrapper{
	position: relative;
	background-color: #111111;
	color: #FFF;
	width: 100%;
}

.column {
  height: 100vh;
  width: 100%;
}
.cat1 {
  background: url(../images/kuniko.jpg) no-repeat top center;
  background-size: cover;
}
.cat2 {
  background: url(images/cat2.jpg) no-repeat center center;
  background-size: cover;
}

.info{
	width: 80%;
	margin: 0 auto;
}
.artiste_name{
	font-size:200%;
	font-weight: 400;
	padding-top: 3em;
	padding-bottom: 1em;
}
.wrapper p{
	font-size: 100%;
	font-weight: 300;
	line-height: 1.5em;
	padding-bottom: 1em;
}


/*タイムライン・年表*/
#exposition{
	background-color: #CCCBD6;
	padding-bottom:100px;
	
}
.timeexpo{
	color: #FFF;
	font-weight: 300;
	font-size: 250%;
	padding-top: 100px;
	padding-bottom: 30px;
	
}
.timeline {
	position: relative;
    list-style: none;
	width: 60%;
	margin: 0 auto;
}

.timeline > li {
  overflow: hidden;
  margin: 1em 0;
  position: relative;
}
.timeline-date {
  position: relative;
  box-sizing: border-box;
  padding-right: 30px;
  width: 30%;
  float: left;
  font-size: 140%;
}
.timeline-content {
  box-sizing: border-box;
  width: 70%;
  float: left;
  border-left: 2px #FFF solid;
  position: relative;
  padding-left: 30px;
  font-size: 120%;
  line-height: 1.5em;
}

#press{
	position: relative;
	width: 960px;
	margin: 0px auto;
	padding: 100px 0;
}
#press>h1{
	font-size: 250%;
	font-weight: 300;
	color: #CCCBD6;
	text-align: center;
	margin-bottom: 100px;
}
#press>ul{
	position: relative;
    list-style: none;
}
#press>ul>li{
	margin-bottom: 50px;
	overflow: hidden;
}
.press_logo{
	float: left;
	padding-right: 50px;
}
.press_logo>img{
	width: 150px;
	height: 150px;
}
.press_text>h2{
	font-size: 200%;
	line-height: 1em;
	margin-bottom: 0.5em;
	font-weight: 400;
}
.press_text>p{
	font-size: 120%;
	font-style: italic;
}


#contact{
	width: 100%;
	padding: 70px 0 150px 0;
	background-color: #FFF;
	position: relative;
}
#ships{
	width: 960px;
	margin: 0 auto;
	color: #000;
}
#ships>h1{
	font-size: 250%;
	line-height: 2em;
	font-weight: 400;
}
#ships>h2{
	font-size: 160%;
	line-height: 1.5em;
}
#ships>p{
	font-size: 140%;
	line-height: 1.5em;
}
#mail{
	margin-top:30px;
	margin-bottom:30px;
}
#mail>a{
	text-decoration: none;
	color:#000;
	font-size: 100%;
	border: #000000 1px solid;
	padding:10px 15px;
}

footer{
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 10px;
	font-size: 80%;
}

.expo_text{
	position: relative;
	width: 960px;
	padding: 100px 0;
	margin: 0 auto;
}
.expo_name{
	font-weight: 400;
	font-size: 250%;
	margin-bottom: 0.1em;
}
.expo_place{
	font-weight: 400;
	font-size: 150%;
	margin-bottom: 1em;
}

.expo_text>p{
	font-size: 120%;
	line-height: 1.5em;
	margin-bottom: 3em;
}
.expo_text>p>img{
	width: 100%;
	display: block;
	margin-bottom: 15px;
}
.detail_button>a{
	background: #777589;
	color: #FFF;
	padding: 5px 10px;
	margin: 0 10px;
	font-size: 90%;
	text-decoration: none;
}

/*クッキー*/
  .cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 12px;
    color: #fff;
    background: rgba(0,0,0,.7);
    padding: 1.2em;
    box-sizing: border-box;
    visibility: hidden;
  }
  .cookie-consent.is-show {
    visibility: visible;
  }
  .cookie-consent a {
    color: #fff !important;
  }
  .cookie-agree {
    color: #fff;
    background: dodgerblue;
    padding: .5em 1.5em;
  }
  .cookie-agree:hover {
    cursor: pointer;
  }
  /* パッと消える */
  .cc-hide1 {
    display: none;
  }
  /* ゆっくり消える */
  .cc-hide2 {
    animation: hide 1s linear 0s;
    animation-fill-mode: forwards;
  }
  @keyframes hide {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }

@media all and (min-width: 500px) {
  .wrapper {
    display: flex;
  }
}

  .cookie-consent {
      flex-direction: column;
    }
  .cookie-text {
      margin-bottom: 1em;
    }

@media screen and (max-width:480px) {
	.artiste{
  left: 50%;	
}
	.h1_sub{
	font-size: 150%;
	font-weight: 400;
}
.h1main{
	font-size: 250%;
	font-weight: 400;
	font-family: 'Italianno', cursive;
}
	.artiste_name{
	padding-top: 1.5em;
	padding-bottom: 0.5em;
}
	
	.timeexpo{
	color: #FFF;
	font-weight: 300;
	font-size: 200%;
	padding-top: 50px;
	padding-bottom: 10px;
	
}
	
	#exposition{
	background-color: #CCCBD6;
	padding-bottom:50px;
	
}
	.artiste_name{
	font-size:150%;
	font-weight: 400;
	padding-bottom: 1em;
}
	.wrapper p{
	font-size: 90%;
}
	.timeline {
	width: 80%;
}
	.timeline-date {
  padding-bottom: 10px;
  width: 100%;
  font-size: 120%;
}
	.timeline-content {
  width: 100%;
  padding-left: 15px;
  font-size: 100%;
}
	
#press{
	width: 80%;
	padding: 50px 0;
}
#press>h1{
	font-size: 200%;
	font-weight: 300;
	color: #CCCBD6;
	text-align: center;
	margin-bottom: 50px;
}
	.press_logo{
	float: none;
	padding-right: 0px;
	display: none;
}
	.press_text>h2{
	font-size: 170%;
}
	.press_text>p{
	font-size: 100%;
}
#ships{
	width: 80%;
	margin: 0 auto;
	color: #FFF;
}
	#ships>h1{
	font-size: 200%;
	line-height: 2em;
}
#ships>p{
	font-size: 100%;
	line-height: 1.5em;
}
	#mail>a{
	width: 100%;
	text-align: center;
	text-decoration: none;
	color:#FFF;
	font-size: 100%;
	border: #FFFFFF 1px solid;
	padding:10px 15px;
}
#contact{
	padding: 30px 0 60px 0;
	background-color: #000000;
	position: relative;
}
	
.expo_text{
	position: relative;
	width: 90%;
	padding: 50px 0;
	margin: 0 auto;
}
.expo_name{
	font-weight: 400;
	font-size: 200%;
	margin-bottom: 0.1em;
}
.expo_place{
	font-weight: 400;
	font-size: 120%;
	margin-bottom: 1em;
}

.expo_text>p{
	font-size: 90%;
	line-height: 1.5em;
	
}
}