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


body{
    background-color: rgba(123,120,133,1.00);
    width: 100%;
    margin: 0vw;
}


/*ローディング画面　ここから--------------------------------------------------------------------------*/
#loading {
  background-size: 100%; 
  position: fixed;
  top: -0.1vw;
  right: 0vw;
  width: 100%;
  margin: 0vw;
  height: 100%;
  transition: all .5s ease;
  background-color: rgba(123,120,133,1.00); /*背景色*/
  z-index: 99;
}

#loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0vw);
}

.loading-logo {
  width: 100%;
  margin: 0vw;
  justify-content:center;
  align-items: center;
  -webkit-animation: loadinglogo 2s ease-in-out 0s infinite alternate;
  animation: loadinglogo 2s ease-in-out 0s infinite alternate;
}
/*↓ロゴの位置を調整するために、imgだけで指定する必要がある*/
.loading-logo img{
	width: 17%;
	position: fixed;
  	top: 30%;
  	right: 40%;
}

@keyframes loadinglogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#page {
  display: none;
}

#page.is-loaded {
  display: block;
}

/*ローディング画面　ここまで-----------------------------------------------------------------------------*/


/*header ロゴアコーディオン用CSS　ここから*/
header{
    width: 100%;
    z-index: 99;
    display: block;
    margin: 0vw;
    /*background-color: brown;*/
}

.acd-check{
  display: none;
    position: absolute;
    right: 20vw;
}


.acd-label{
  width: 10%;
  color: #fff;
  display: block;
  margin: 0vw;
  padding: 0vw 0vw;
  cursor: pointer;
  text-align: center;
  /*background-color: rgba(56,0,168,1.00); */
  position: relative;
  left: 45vw;
}

.acd-label img{
    width: 60%;
}

.acd-content{
    
  margin: 0 vw;
  padding: 0 0vw;
  width: 100%;
  background-color: rgba(162,158,175,1.00); 
  opacity: 0;
  transition: .5s;
  visibility: hidden;
  position: relative;
  left: 0vw;
  text-align: center;
}

.acd-content li{
    list-style: none;
    float: left;
    margin: 0vw 2vw;
    /*background-color: rgba(72,0,255,1.00); */
    position: relative;
    top: 1vw;
    left: 27.7vw;
    text-align: center;
    
    font-family: "Plantagenet Cherokee", "Book Antiqua", Palatino, "serif";
    font-size: 1.2vw;
}

.acd-content a{
    /*background-color: rgba(72,0,255,1.00); */
    text-decoration: none; /*リンク下のバーを消す*/
    /*background-color: brown;    メンテ用*/
    color: aliceblue; /*リンク文字の色変更用*/
}

.acd-check:checked + .acd-label + .acd-content{
  margin: 0 0vw;
  width: 100%;
  height: 3vw;
  opacity: 1;
  padding: 2vw 0vw;
  visibility: visible;
  position: relative;
  left: 0vw;
}

.logo-menu2{
    display: none;
}
/*header ロゴアコーディオン用CSS　ここまで*/

main{
    width: 100%;
    position: relative;
    left: 0vw;
    text-align: center; /*main全体にかかってる*/
    margin: 0vw;
    /*background-color: darkgoldenrod;*/
}

main h1{
    color: aliceblue;
    position: relative;
    right: 0vw;
    margin:  2vw 4vw 4vw 4vw;
    
    font-family: "Plantagenet Cherokee", "Book Antiqua", Palatino, "serif";
    font-weight: 100;
    font-size: 3.5vw;
    
    /*background-color: deeppink;*/
}


.news-contents{
    width: 100%;
    margin: 7vw 0vw 0vw 0vw;
    color: rgba(255,255,255,1.00);
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    text-align: center;

    background-color: rgba(255,228,89,0.00);
}

.news-contents h4{ /*ニュースのカテゴリ*/
    width: 20%;
    margin: 0vw 0vw 1vw 0vw;
    padding: 0vw 0vw 0vw 0vw;
    position: relative;
    left: 40.1vw;
    font-size: 1vw;
    
    background-color: rgba(186,134,159,1.00) ; /*「展示」*/
    /*background-color: rgba(114,99,143,1.00);  /*「おしらせ」*/
    /*background-color: rgba(137,161,196,1.00);  /*「制作」*/
    /*background-color: rgba(120,138,120,1.00);  /*「イベント」*/
}


.news-contents h3{ /*ニュースタイトル*/
    width: 100%;
    margin: 2vw 0vw 2vw 0vw;
    
    font-size: 2vw;
    
    background-color: rgba(217,27,255,0.00);
}


.news-contents h5{ /*日付*/
    width: 100%;
    margin: 0vw;
    color: rgba(181,181,181,1.00);
    font-size: 1.2vw;
    
    background-color: rgba(138,0,36,0.00);
}


.news-contents img{
    width: 50%;
    margin: 3vw 0vw 0vw 0vw;

}

.news-contents p{
    width: 50%;
    margin: 2vw 0vw 0vw 0vw;
    position: relative;
    left: 25vw;
    
    line-height: 2vw;
    text-align: left;
    font-size: 1vw;
    
    background-color: rgba(27,27,255,0.00);
}

.news-contents a{
    color: rgba(135,180,218,1.00);
}

.another-news{
    width: 100%;
    margin: 0vw 0vw 0vw 0vw;
    padding: 0.5vw 2vw;
    
    position: relative;
    top: 6vw;
    font-size: 1vw;
    text-decoration: none; /*リンク下のバーを消す*/
    color: aliceblue; /*リンク文字の色変更用*/
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    background-color: rgba(97,95,105,0.90);
    border-radius: 0.5vw;

}



/*ーーーーーー「News」のコンテンツ１つの設定　ここまで　ーーーーーー*/

/*footerをコンテンツ量に合わせて位置を変動させるには、
まずコンテンツが属する親要素の中にfooterを入れる。
次にfooterのpositionをabsoluteにして親要素基準で動くようにする。
最後にfooterのmargin-topでコンテンツとの距離感を決めれば、コンテンツの量に合わせて動くようになる。*/


footer{
    width: 100%;
    margin-top: 12vw; /*後で調整*/
    position: relative;
    top: 0vw;
    padding: 0vw 0vw 0vw 0vw;
    height: 41vw;
    z-index: 30;
    background-color: rgba(84,82,90,1.00);
    text-align: center;
}

.contact-icon{
    width: 100%;
    margin: 0vw 0vw 0vw 0vw;
    padding:  0vw 0vw 0vw 0vw;
    position: relative;
    top: 4vw;
    right: 0vw;
    /*background-color: blue; */
    box-sizing: border-box;
}

.contact-icon a{
    /*background-color: aqua;*/
    padding: 1vw 0vw 0vw 0vw;
    margin: 0vw 3vw;
}

.contact-icon img{
    width: 2.5%;
    margin: 0vw 0vw;
}

.footer-menu-list{
    width: 100%; /*これが100%だったせいで謎余白ができてた*/
    margin: 0vw 0vw;
    position: relative;
    top: 8vw;
    left: 0vw;
    
    /*background-color: lawngreen;*/
}

.footer-menu-list li{
    width: 10%; /*.footer-menu-listのwidthが100%なので、*/
    margin: 0vw 0vw;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: aliceblue;
    font-size: 1vw;
    list-style: none;
    position: relative;
    top:0vw;
    left: 20%;
    float: left;
    
    /*background-color: rgba(255,244,0,1.00);*/
}

.footer-menu-list a{
    text-decoration: none; /*リンク下のバーを消す*/
    color: aliceblue; /*リンク文字の色変更用*/
    
    /*background-color: brown;*/
}

.copyright{
    color:aliceblue;
    width: 100%;
    margin: 0vw 0vw 3vw 0vw;
    position: relative;
    top: 12.5vw;
    text-align: center;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    
    /*background-color: rgba(125,68,28,0.50);*/
}

.copyright p{
    width: 50%;
    margin: 0vw;
    text-align: center;
    display: inline-block;
    
    /*background-color: rgba(140,180,60,0.50);*/
}

.footer-logo{
    width: 100%;
    margin: 0vw;
    position: relative;
    top: 13vw;
    left: 0vw;
    text-align: center;
    
    /*background-color: black;*/
}

.footer-logo img{
    width: 5%;
    margin: 0vw;
    position: relative;
    right: 0%;
    
    /*background-color: lightcoral;*/
}

.c-mark{
    width: 100%;
    margin: 0vw;
    position: relative;
    top: 14vw;
    left: 0vw;
    text-align: center;
    font-size: 0.8vw;
    
    color: rgba(255,255,255,1.00);
}

