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


body{
    background-color: rgba(123,120,133,1.00);
    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%;
    margin: 0vw;
    z-index: 99;
    display: block;
    
    /*background-color: brown;*/
}

.logo-menu2{
    display: none;
}

.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;
  position: relative;
  left: 44.5vw;
    
  /*background-color: rgba(56,0,168,1.00); */
}

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

.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{
    margin: 0vw 0vw;
    padding: 0vw 0vw;
    width: 100%;
    height: 100vw;
    position: relative;
    left: 0vw;
    text-align: center; /*main全体にかかってる*/
}

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: rgba(255,63,66,1.00);*/
    
}

main h2{
    color: aliceblue;
    position: relative;
    top: -3vw;
    right: 0vw;
    margin:  0vw 4vw 4vw 4vw;
    
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-weight: 100;
    font-size: 2.5vw;
    
    /*background-color: rgba(255,0,254,1.00);*/
}

/*スクロール　フェードイン　ここから---------------------------------------*/
/* 画面外にいる状態 */
.fadein {
	opacity : 0;
	transform : translate(0, -2vw);
	transition : all 2000ms;
	}

/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0vw);
	}

/*スクロール　フェードイン　ここまで---------------------------------------*/


/*gallery背景の平行四辺形作図　ここから*/
.back-color{ /*gallery背景の平行四辺形作図用１*/ /*親要素として存在*/
    width: 100%; /*親要素をこえて子要素が画面いっぱいに広がる　そのために「vw」に。*/
    height: 60%;
    margin: 0vw;
    position: relative;
    top: 35vw;
    padding: 0vw 0vw;
    z-index: 1;
    
    /*background-color: rgba(112,15,255,1.00);*/
}

.back-color::before{ /*gallery背景の平行四辺形作図用2*/ /*子要素として存在*/
    width: 100%;
    height: 120vw;
    margin: 0vw;
    content: "";
    position: absolute; /*absoluteじゃないとダメっぽい*/
    top: 0; bottom: 0; left: 0; right: 0;
    z-index: -1;
    background-color: rgba(123,120,133,1.00);
    transform: skewY(-7deg); /*平行四辺形　角度*/
    
}
/*gallery背景の平行四辺形作図　ここまで*/


/*ーーーーー　うつろ　コメント　ここから　ーーーーー*/
.doll{
    width: 100%;
    height: 76.1vw;
    margin: 0vw;
    position: relative;
    top: -3vw;
    color: rgba(255,255,255,1.00);
    text-align: none;
    z-index: 3;
    
    /*background-color: rgba(25,255,213,1.00);*/
}

.doll img{
    width: 100%;
    z-index: -1;
    
    /*background-color:yellow;*/
}

.moji{
    width: 100%;
    margin: 0vw 0vw 0vw 0vw;
    position: relative;
    top: 0vw;
    right: 0vw;
    z-index: 20;
    
    /*background-color: rgba(25,25,213,1.00);*/
}


.doll h5{ /*シリーズ名*/
    width: 30%;
    position: relative;
    top: -40vw;
    left: 7vw;
    z-index: 20;
    
    font-size: 1.2vw;
    font-family: "Plantagenet Cherokee", "Book Antiqua", Palatino, "serif";
    font-weight: 100;
    
    /*background-color: rgba(118,255,0,0.10);*/
}

.doll h2{ /*ドール名*/
    width: 50%;
    position: relative;
    top: -43.8vw;
    left: 5vw;
    z-index: 3;

    font-size: 2.5vw;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    
    /*background-color: rgba(255,158,0,0.30);*/
}

.doll h4{ /*制作年*/
    width: 10%;
    position: relative;
    top: -47vw;
    left: 19.2vw;
    z-index: 3;
    text-align: left;

    font-size: 1.7vw;
    font-family: "Plantagenet Cherokee", "Book Antiqua", Palatino, "serif";
    font-weight: 100;
    
    /*background-color: rgba(0,13,141,1.00);*/
}

/*テキストのレスポンシブ背景の平行四辺形作図　ここから*/
.responsive-space-1{ /*gallery背景の平行四辺形作図用１*/ /*親要素として存在*/
    display: none; /*レスポンシブ決めるときにblockに*/
    widows: 100%;
    /* background-color: rgba(255,0,4,1.00); */  /*実際では不透明度0％にする*/
    position: relative;
    top: 49vw;
    padding: 5vw 2vw;
    z-index: 1;
}

.responsive-space-1::before{ /*gallery背景の平行四辺形作図用2*/ /*子要素として存在*/
    display: none; /*レスポンシブ決めるときにblockに*/
    content: "";
    position: absolute; /*absoluteじゃないとダメっぽい*/
    top: 0; bottom: 0; left: 0; right: 0;
    z-index: -1;
    background-color: rgba(123,120,133,1.00);
    transform: skewY(-7deg); /*平行四辺形　角度*/

}
/*テキストのレスポンシブ背景の平行四辺形作図　ここまで*/


.doll-utsuro p{ /*テキスト*/
    width: 35%;
    position: relative;
    top: -48vw;
    left: 10.0vw;
    z-index: 3;
    text-align: left;
    
    font-size: 1.2vw;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-weight: 100;
    
    /*background-color: rgba(179,0,41,1.00);*/
}

/*ーーーーー　うつろ　コメント　ここまで　ーーーーー*/


 

/*ーーーーー gallery スライド用　css　ここからーーーーー*/
.gallery{
    max-width: 100%;
    columns: 0;/*段組みの数　だが今は意味なし　とりあえず０にして残しておく*/
    padding:0vw 0vw;/*ギャラリー左右に余白をつける*/
    margin-top: 2vw;
    position: relative;
    top: 0vw;
    left: 0vw;
    
    display: flex;
    flex-wrap: wrap;
    z-index: 55;
    
    /*background-color: rgba(220,0,255,1.00);*/
}



.gallery ul{
  display: flex;
  flex-wrap: wrap;
    
    /*background-color: rgba(150,78,0,1.00);*/
}


.gallery li {
    /*
    margin-bottom: 1vw;
    */
    margin: 0.6vw 0vw 0.3vw 1vw;/*各画像下に余白をつける*/
    list-style:none;
    position: relative;
    width: 11.4%; /*横並びにする画像の数　50%=2枚*/
    
    /*background-color: rgba(93,134,74,1.00);*/
}

/*
.gallery::before{
  content: "";
  display: block;
  padding-top: 100%;
}
*/

.gallery li:before{
  content: "";
  display: block;
  padding-top: 100%;
    
    /*background-color: rgba(0,166,9,1.00);*/
}

.gallery-back-color{
    height: 15vw;
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
    vertical-align: bottom;/*画像の下にできる余白を削除*/
    
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%; /*本当は 50% だけど*/
    right: 0;
    bottom: 0;
    left: 50%;
    margin: auto;

    object-fit: cover;
    object-position: 100% 20%;/*0=左右（数値が上がるにつれて右へ）,0=上下（数値が上がるにつれて下へ）　ちなみに0,0は左上*/
    
    transform: translate(-50%,-50%);
    
    /*background-color: rgba(134,57,57,1.00);*/
}

li img.img-yoko {
    object-fit: cover;
    object-position: 50% 20%;/*0=左右（数値が上がるにつれて右へ）,0=上下（数値が上がるにつれて下へ）　ちなみに0,0は左上*/
    background-color: rgba(255,0,4,1.00);

}

/*ーーーーー gallery スライド用　css　ここまで ーーーーー*/

.setsumei{
    width: 100%;
    color: rgba(255,255,255,1.00);
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    z-index: 1;
    background-color: rgba(123,120,133,1.00);
}

.setsumei a{
    color: rgba(135,180,218,1.00);
}

.br-1024{
    display: none;
}

.br-599{
    display: none;
}

.howtocorner{
    width: 100%; 
    margin-top: -1vw;
    height: 45vw;
    background-color: rgba(123,120,133,1.00);
    position: relative;
    top: 0vw;
}

.howtocorner h2{
    position: relative;
    top: 5vw;
    z-index: 55;
    padding-top: 5vw;
    border-top: solid 0.1vw rgba(255,255,255,0.30);

    /*background-color: rgba(155,146,0,1.00);*/
}

.howtocorner p{
    position: relative;
    top: 5vw;
    color: rgba(255,255,255,1.00);
    font-size: 1.2vw;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    z-index: 55;
    
    /*background-color: rgba(23,62,255,1.00);*/
}

.howtocorner li{
    width: 31%;
    position: relative;
    top: 5vw;
    left: 33vw;
    margin: 1vw;
    padding: 0vw 0vw 0vw 0vw;
    list-style: none;
    z-index: 4;
    background: rgba(162,158,175,1.00);
    border-radius: 0.4vw;
    color: rgba(255,255,255,1.00);
   
    font-size: 1.3vw;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.howtocorner a{
    text-decoration: none;
    color: rgba(255,255,255,1.00);
    display: block;
    
}

.another a{
    position: relative;
    top: 5vw;
    color: rgba(255,255,255,1.00);
    text-decoration: underline;
    z-index: 4;
    
    font-size: 1.2vw;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-weight: 100;
    
    /*background-color: rgba(255,128,232,1.00);*/
}




footer{
    width: 100%;
    margin-top: 80vw; /*後で調整*/
    position: relative;
    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);
}


/*ーーーーーーーーースライドのCSS　ここからーーーーーーーーーーーーーーーーー*/

.back-img{
    width: 100%;
}

#photo {
    
    width: 100%;
   	position: fixed;
	top: 0vw;
    right: 0vw;
    bottom: 0vw;
    left: 0vw;
    z-index: -10;
    opacity:1.0;
}
            
#photo img {
    top: 0;
    left: 0;
    position: absolute;
}

#photo-responsive {
    
    display: none;
    width: 100%;
   	position: fixed;
	top: 0vw;
    right: 0vw;
    bottom: 0vw;
    left: 0vw;
    z-index: -10;
    opacity:1.0;
}
            
#photo-responsive img {
    top: 0;
    left: 0;
    position: absolute;
}

/*ーーーーーーーーースライドのCSS　ここまでーーーーーーーーーーーーーーーーー*/
