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


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

/*ローディング画面　ここから--------------------------------------------------------------------------*/
#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%;
    margin: 0vw;
    z-index: 99;
    display: inline-block;
    text-align: center;
    
    /*background-color: brown;*/
}

.logo-menu2{
    display: none;
}

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


.acd-label{
  width: 100%;
  color: #fff;
  margin: 0vw;
  padding: 0vw 0vw;
  cursor: pointer;
  position: relative;
  /*left: 44.5vw;*/
    
  /*background-color: rgba(56,0,168,1.00); */
}

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

.acd-content{
    
  margin: 0vw -0vw;
  padding: 0vw 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: 28.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{
  width: 100%;
  margin: 0vw 0vw;
  height: 3vw;
  opacity: 1;
  padding: 2vw 0vw;
  visibility: visible;
  position: relative;
  left: 0.1vw;
}
/*header ロゴアコーディオン用CSS　ここまで*/



main{
    width: 100%;
    margin: 0vw;
    position: relative;
    left: 0vw;
    text-align: center;
    
    /*background-color: rgba(66,155,0,1.00);*/
}

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

/*Gallary　ここまで*/
/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn{
	display: flex;
	/*justify-content: center;*/
	flex-wrap: wrap;
    text-align: center;
    width: 100%;
    margin: 4vw 0vw 5vw 0vw;;
	padding:0vw 0vw;
    
    /*background-color: brown;*/
}

.sort-btn li{
    width: 10%;
    float: left;
    list-style:none;
	cursor: pointer;

	padding: 1.4vw;
	margin: 6vw 0vw 2vw 0vw;
    position: relative;
    left: -15.20vw;
    text-align: center;
    
    color: rgba(255,255,255,1.00);
    font-family: "Plantagenet Cherokee", "Book Antiqua", Palatino, "serif";
    font-size: 1.1vw;
    
    /*background-color:rgba(104,75,255,1.00);*/
}

.sort-btn li.active{/*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
    widows: 100%;
    border: 0.1vw solid rgba(255,250,250,1.00);
	border-radius: 0.5vw;
    
    /*background-color:rgba(213,0,3,0.50);*/
}

.sort-btn li.sort00{
    width: 30%;
    margin: 1.4vw 0vw 7vw 0vw;
    position: relative;
    left: 33vw;
    
    /*background-color: aqua;*/
}


/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  width: 85%;
  margin: 0vw;
  height: auto;
  position: relative;/*並び替えの基準点を指定*/
  display: inline-block;
  text-align: center;
  
  /*background-color: rgba(255,113,234,1.00);*/

}

/*各画像の横幅などの設定*/
.item {
  
  display: block;
  position: absolute;
  width: 16.5%; /*横並びで5つ表示*/
  z-index: 1;
  list-style:none;
}

/*内側のボックスの高さが崩れないように維持*/
 .item-content {
  position: relative;
  width: 100%;
  margin: 0vw;
  height: 100%;
  /*background-color: aqua;*/
}

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img {
    
	width:99%;
	height:auto;
    margin: 0.1vw;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
.item {
  width: 49.5%;/*横並びで2つ表示*/
}
}

/*＝＝＝fancyboxサムネイル背景と画像選択時の枠線の指定*/

/*
.fancybox-thumbs {
    background: transparent!important;
}

.fancybox-thumbs__list a:before {
    border: 6px solid #FA999B;
}
*/


/*ーーーーーーーーーーーーーーーーーー　Gallary ここまで　ーーーーーーーーーーーーーーーーーーーー*/

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);
}

