@charset "UTF-8";


/*==================================================
基本のおまじない
===================================*/

html { 
	scroll-behavior: smooth;
	font-size: 10px;
}
body {
	margin: 0;
	padding: 0;
	color: #fff;
	margin: 0 auto;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	height: auto;
	background-color: #B9B3B3;	
}
* {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}
p {
	margin: 0;
	padding: 0;
}
.all_box {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 3/11;
}

/*==================================================
スケールを変えるアニメーション
===================================*/

@keyframes sample-animation {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
	100%{
        transform: scale(1);
    }
}
@keyframes sample-animation2 {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
	100%{
        transform: scale(1);
    }
}



/*==================================================
ロゴ
===================================*/
.logo2 {
	position: fixed;
	top: 3%;
	left: 4%;
	width: 150px;
	z-index: 100000000;
}
.logo2 img {
	width: 100%;
	height: auto;
}





/*==================================================
ナビゲーション
===================================*/
#header {
	position: fixed;
	top: 0;
	width: 60%;
	margin-left: 20%;
	margin-top: 30px;
	height: 40px;
	background-color: rgba(0, 0, 0, .3);
	border-radius: 20px;
	z-index: 10000000;
	transform: translateY(0px);
	transition: all 1s ease-in-out;
  }
  
  #header.on {
	  transform: translateY(-300px);
  }

.menu {
	display: flex;
}

.menu li {
	width: 20%;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	color: #fff3f3;
	line-height: 40px;
	text-align: center;
	font-weight: 300;
	border-right: 1px solid rgb(254, 254, 254, .5);
	border-radius: 20px;
}
.menu li:nth-child(5) {
	border-right: none;
}

.menu li:hover {
	transition: 0.1s ease-in-out;
	background-color: rgb(0, 0, 0, .3);
}





/*============スクロールアイコン===============*/

#scrolldown1{
	position:fixed;
	width: 150px;
	height: 140px;
	right:50px;
	bottom:7%;
	z-index: 2000000000;
	opacity: 1;
	transition: all 1s ;
  }
  #scrolldown1.on {
	  opacity: 0;
	  transition: all 1s ;
  }
  
  
  /*Scrollテキストの描写*/
  .scrolldown1 span{
	position: absolute;
	bottom: 0px;
	left: 25px;
	margin: 0 auto;
	  /*テキストの形状*/
	color: rgba(255, 255, 255, 1);
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
  }
  
  /* 線の描写 */
  .scrolldown1::before {
	content: "";
	  /*描画位置*/
	position: absolute;
	top: 0;
	left: 50%;
	  /*線の形状*/
	width: 1px;
	height: 80px;
	background: rgba(255, 255, 255, 1);
	  /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 2s ease-in-out infinite;
	opacity:0;
  }
  
  /*高さ・位置・透過が変化して線が上から下に動く*/
  @keyframes pathmove{
	0%{
	  height:0;
	  top:0;
	  opacity: 0;
	}
	30%{
	  height:80px;
	  opacity: 1;
	}
	100%{
	  height:0;
	  top:80px;
	  opacity: 0;
	}
  }
  
  
/*============ハンバーガーメニュー===============*/

.hamburger-menu {
	display: block;
}
.menu-btn {
	position:fixed;
    top: 20px;
    right: 20px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 10000000000;
    opacity: 1;
    animation-name: fadein;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.menu-btn span,
.menu-btn span:before, 
.menu-btn span:after {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    background-color: #ffffff;
    position: absolute;
	z-index: 10000000;
	box-shadow:  0 0.5px 0.5px 0.5px rgba(0, 0, 0, .2);
	transition: 0.25s all;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
	opacity: 1;
    transform: rotate(15deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	opacity: 1;
    transform: rotate(-15deg);
}

.menu_p {
	position: absolute;
	top: 35px;
	width: 50px;
	text-align: center;
	height: auto;
	padding-top: 10px;
	font-size: 1.2rem;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	letter-spacing: 0.1em;
	text-shadow: 1px 1px 2px #7c7b7b;
	display: inline-block;
}

.none {
	display: block;
}
#menu-btn-check {
	display: none;
}
.menu-min {
    position: fixed;
	top: 0;
	right: -200px;
	width: 200px;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	transition: all 0.5s ease-in-out;
    z-index: 10000000;
}

#menu-btn-check:checked ~ .menu-min {
	right: 0;
	transition:all 0.5s ease-in-out ;
}
#menu-btn-check:checked ~ .menu_line {
	opacity: 0;
}

.min-menu {
	position: absolute;
	top: 100px;
	width: 100%;
	height: auto;
    z-index: 1000000;
}


.min-menu a {
	color: #ffffff;
	display: block;
	line-height: 40px;
	font-size: 1.3rem;
	width: 160px;
	margin: 0 auto;
	border-left: 1px solid #a5a4a4;
	padding-left: 20px;
	letter-spacing: 0.2em;
	transition: all 0.2s;
}
.min-menu a:hover {
	color: #fff;
	border-left: 2px solid #fff;
	transition: all 0.2s;
}

/*==================================================
/* トップぺアニメーションスタートの遅延時間を決めるCSS*/

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time02{
animation-delay: 0.2s;
}

.delay-time04{
animation-delay: 0.4s;
}

.delay-time06{
animation-delay: 0.6s;
}

.delay-time08{
animation-delay: 0.8s;
}

.delay-time1{
animation-delay: 1s;
}

.delay-time2{
animation-delay: 1.2s;
}

.delay-time3{
animation-delay: 0.5s;
}



/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動き自体の指定：下から「ふわっ」
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}

.fadeUp2 {
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(50px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*==================================================
動き自体の指定：横から「ふわっ」
===================================*/

.fadeslide {
	animation-name:fadeSlideAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity: 0;
	}
	
	@keyframes fadeSlideAnime{
	  from {
		opacity: 0;
		transform: translateX(50px);
	  }
	
	  to {
		opacity: 1;
		transform: translateX(0);
	  }
	}




/*==================================================
ふわっと出るcss javaにてタイミングを制御　
===================================*/
.fuwa_moto {
 	opacity: 0;
 	transform: translateY(50px);
 }

 .is-animated {
 	opacity: 1;
 	transform: translateY(0px);
 	transition: 1.5s;
 }

/*==================================================
photoページtop
===================================*/
.page1{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	font-family: 'Lato', sans-serif;
	font-weight: 100;
	background-color: #B9B3B3;	
}
.page1_bg0 {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-image: url(../images/bg.png);
	background-size: cover;
	background-position: center;
	z-index: 1000;

}
#p_top {
	position: fixed;
	top: 15%;
	right: 0;
	width: 50%;
	height: auto;
	aspect-ratio: 3.7/3;
	border-radius: 30px 0 0 30px;
	overflow: hidden;
	z-index: 10000;	
	opacity: 1;
	transition: opacity 2s;
}
#p_top.on {
	opacity: 0;
}
.page1_bg img {
	margin-right: 30%;
	width: auto;
	height: 100%;
	animation-name: sample-animation2;
    animation-duration: 100s;
    animation-iteration-count: infinite;
}
.pagelook {
	position: fixed;
	top: 12%;
	left: 5%;
	display: flex;
	width: 200px;
	height: auto;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 1.2rem;
	letter-spacing: 0.03em;
	color: #686666;
	z-index: 10000000;
}
.pagelook a {
	display: inline-block;	
}
.pagelook a:hover {
	color: #fff;
}
.pagelook span {	
	margin: 0 5px 0;
}
#photo_title {
	position: fixed;
	top: 35%;
	left: 10%;
	width: 30%;
	height: auto;
	color: #686666;
	aspect-ratio: 5 / 2;
	border-radius: 10px;
	padding: 2%;
	border: 1px solid #686666;
	opacity: 1;
	z-index: 100;
 }
 #photo_title.on {
	opacity: 0;
	transition: all 1s;
 }
 .photo_title h1 {
	font-size: 3vw;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	border-bottom: 1px solid #686666 ;
	line-height: 6rem;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
 }
.photo_title p {
	font-size: 2vw;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 200;
	line-height: 5rem;
	margin-left: 10px;
	text-align: center;
}



 /*==================================================
photoページの説明文
===================================*/
 .photo_p_box {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 1000000;
	opacity: 1;
 }

 .photo_p {
	position: sticky;
	top: 22%;
	left: 10%;
	width:30%;
	height: auto;
	font-size: 1.3rem;
	font-weight: 300;
	color: #686666;
	letter-spacing: 0.04em;
	line-height: 3rem;
	text-align: center;
	padding-bottom: 10%;
	min-width: 300px;
 }

 /*==================================================
photographページ
===================================*/
#photograph {
	position: relative;
	width: 100%;
	z-index: 100000;
	padding-bottom: 0.01%;
	background-color: #B9B3B3;	
}
#photograph a {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 20%;
}
#photograph img {
    position: absolute;
	z-index: 1000;
}
#photograph p {
	position: absolute;
	z-index: 1001;
	line-height: 10px;
}

.grid_p {
	width: 30%;
	height: auto;
	font-size: 6vw;
	font-family: 'Cormorant', serif;
	color: #555;
	margin-left: 15%;
}
.grid_p p {
	width: 100%;
	text-align: right;
}
.grid {
	position: relative;
	width:80%;
	margin-left:10%;
	margin-top: 10%;
	z-index: 10000;
	margin-bottom: 40%;
	aspect-ratio: 7/3;
  }
   
  /* アイテム */
.item.muuri-item-dragging {
	z-index: 300000000;
  }

  .item {
	display: block; /* 必須 */
	position: absolute; /* 必須 */
	width: 30%; /* アイテムの幅 */
	height: auto;
	aspect-ratio: 1/1; /* アイテムの高さ */
	margin: 1.6%; /* アイテム間のマージン(この2倍になる) */
	z-index: 100000000;
	font-family: 'Cormorant', serif;
  }
  .item span {
	font-size: 17rem;
	margin-left: 0%;
}

.item1 {
	position: absolute;
	margin-top: 20%;
	margin-left: 0%;
	aspect-ratio: 4/3;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
	color:#575656 ;
}
.item img{
	width: 100%;
	border-radius: 10px;
}
.item1 p{
    position: absolute;
	bottom: 10%;
	right: -10%;
}

.item2 {
	margin-top: 25%;
	margin-left: 0%;
	aspect-ratio: 4/3;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item2 p{
    position: absolute;
	bottom: 0%;
	right: -10%;
}


.item3 {
	margin-left: 10%;
	aspect-ratio: 3/4;
	width: 80%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item3 p{
    position: absolute;
	bottom: -20%;
	right: -5%;
}


.item4 {
	margin-top: 15%;
	margin-left: 0%;
	aspect-ratio: 4/3;
	width: 110%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
	color:#575656 ;
}
.item4 p{
    position: absolute;
	bottom: 10%;
	right: 0%;
}

.item5 {
	margin-top: 10%;
	margin-left: 0;
	aspect-ratio: 4/3;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item5 p{
    position: absolute;
	bottom: -10%;
	right: -10%;
}
.item5 img {
	margin-top: 10%;
	opacity: 1;
}

.item6 {
	margin-top: 30%;
	margin-left: 10%;
	aspect-ratio: 4/4;
	width: 80%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item6 p{
    position: absolute;
	bottom: -70%;
	right: -5%;
}
.item7 {
	margin-left: 10%;
	aspect-ratio: 3/4;
	width: 85%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item7 p{
    position: absolute;
	bottom: -10%;
	right: -5%;
}
.item8 {
	margin-top: 15%;
	margin-left: 0%;
	aspect-ratio: 4/3;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item8 p{
    position: absolute;
	bottom: -10%;
	right: -10%;
}
.item9 {
	margin-top: 60%;
	margin-left: 0;
	aspect-ratio: 4/3.5;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
	color:#575656 ;
}
.item9 p{
    position: absolute;
	bottom: 10%;
	right: -10%;
}
.item10 {
	margin-top: 30%;
	margin-left: 0;
	aspect-ratio: 4/3.5;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
	color:#575656 ;
}
.item10 p{
    position: absolute;
	bottom: -10%;
	right: -10%;
}
.item11 {
	margin-left: 5%;
	aspect-ratio: 3/4;
	width: 90%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
	color:#575656 ;
}
.item11 p{
    position: absolute;
	bottom: -10%;
	right: -5%;
}
.item12 {
	margin-top: 0%;
	margin-left: 0;
	aspect-ratio: 4/3.5;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
	color:#575656 ;
}
.item12 p{
    position: absolute;
	bottom: 10%;
	right: -10%;
}
.item13 {
	margin-top: 30%;
	margin-left: 0%;
	aspect-ratio: 4/3;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item13 p{
    position: absolute;
	bottom: 10%;
	right: -10%;
}
.item14 {
	margin-top: 30%;
	margin-left: 10%;
	aspect-ratio: 4/3;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item14 p{
    position: absolute;
	bottom: 10%;
	right: -10%;
}
.item15 {
	margin-top: 20%;
	margin-left: 0;
	aspect-ratio: 4/3.5;
	width: 105%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item15 p{
    position: absolute;
	bottom: 35%;
	right: -10%;
}
.item16 {
	margin-top: 15%;
	margin-left: -5%;
	aspect-ratio: 4/3;
	width: 110%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item16 p{
    position: absolute;
	bottom: 30%;
	right: 0%;
}
.item17 {
	margin-top: 5%;
	margin-left: 20%;
	aspect-ratio: 4/3.5;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
	color:#575656 ;
}
.item17 p{
    position: absolute;
	bottom: 15%;
	right: -10%;
}
.item18 {
	margin-top: 15%;
	margin-left: 0%;
	aspect-ratio: 4/3;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item18 p{
    position: absolute;
	bottom: -5%;
	right: -10%;
}
.item19 {
	margin-top: 5%;
	margin-left: 0%;
	aspect-ratio: 4/3.4;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item19 p{
    position: absolute;
	bottom: 0%;
	right: -10%;
}
.item20 {
	margin-left: 0%;
	aspect-ratio: 3/4;
	width: 90%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
	color:#575656 ;
}
.item20 p{
    position: absolute;
	bottom: 0%;
	right: -5%;
}
.item21 {
	margin-top: 15%;
	margin-left: -5%;
	aspect-ratio: 4/3;
	width: 110%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item21 p{
    position: absolute;
	bottom: 30%;
	right: 0%;
}
.item22 {
	margin-top: 10%;
	margin-left: 0%;
	aspect-ratio: 3/4;
	width: 85%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
	color:#575656 ;
}
.item22 p{
    position: absolute;
	bottom: -30%;
	right: -5%;
}
.item23 {
	margin-top: 15%;
	margin-left: 10%;
	aspect-ratio: 4/3;
	width: 100%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item23 p{
    position: absolute;
	bottom: 5%;
	right: -10%;
}
.item24 {
	margin-left: 10%;
	aspect-ratio: 3/4;
	width: 85%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
	color:#575656 ;
}
.item24 p{
    position: absolute;
	bottom: -30%;
	right: -5%;
}
.item25 {
	margin-left: 10%;
	aspect-ratio: 3/4;
	width: 85%;
	height: auto;
	border-radius: 10px;
	font-size: 5rem;
	font-weight: 300;
}
.item25 p{
    position: absolute;
	bottom: -20%;
	right: -5%;
}
.item0 p {
	border: 1px solid #555;
	border-radius: 10px;
	font-size: 3rem;
	text-align: center;
	margin-top: 40%;
	width: 100%;
	height: auto;
	padding: 100%;

}


#zoomback {

	/* 絶対位置に配置 */
	position:absolute;
	top:0;
	
	/* 画面いっぱいに */
	width:100vw;
	height:100vh;
	
	/* 背景を少し透過 */
	background-color:rgba(0,0,0,0.8);
	
	/* 中のimgを中央揃え */
	display:flex;
	justify-content:center;
	align-items:center;
	z-index: 10000000;
	display: none;
	}
	
	
	/* 拡大画像のサイズを調整 */
	#zoomimg {
	width:50%;
	border:solid 5px #fff;
	}

	.deka {

		animation:deka 0.3s ease-out;
		}
		
		@keyframes deka {
		
		from {
		
		transform:scale(0);
		}
		
		}


.tes {
	position: absolute;
	width: 100%;
	height: 200px;
	background-color: #555;

}

/*==================================================
CONTACTページ
===================================*/
.contact {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: -1;
	overflow:hidden;
	z-index: 1000000;
}
#footer_bg {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-image: url(../images/photo_foot.png);
	background-size: cover;
	background-position: left;
	z-index: 10;
	opacity: 0;
	transition: 1s;
}
#footer_bg.on {
	opacity: 1;
}
.contact_title {
	position: absolute;
	top: 30%;
	left: 10%;
	width: 300px;
	height: auto;
	color: #fbfbfb;
	
	z-index: 100;
}
.contact_title h1 {
	font-size: 4rem;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	border-bottom: 1px solid #ffffff ;
	line-height: 6rem;
	letter-spacing: 0.05em;	
 }
 .contact_title p {
	font-size: 1.5rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 200;
	line-height: 2.5rem;
	margin-top: 10px;
}
.foot {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 240px;
	background-color: rgba(0, 0, 0, 0.4);
}
.logo1_foot {
	position: absolute;
	top: 30%;
	left: 10%;
	width: 90px;
	height: auto;
}
.logo1_foot img {
	width: 100%;
	height: auto;
}

.foot_logo {
	position: absolute;
	display: block;
	width: 200px;
	left: 50%;
	top: 40%;
	transform: translateX(-50%);

}
.foot_logo img {
	width: 100%;
	height: auto;
	animation: sample-animation4 2s ease-in-out infinite;
}
.foot_logo p {
	font-size: 1.2rem;
	font-family: 'Lato', sans-serif;
	text-align: center;
	padding-top: 5px;

}


.menu_foot {
	position: absolute;
	top: 10%;
	right: 2%;
	width: 20%;
	height: auto;
}
.menu_foot li {
	font-size: 1.4rem;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 4rem;
	color: #b6a632;
}
.menu_foot li:hover {
	color: #fff;
}
.copy {
	position: absolute;
	width: 100%;
	font-size: 1.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	text-align:center;
	bottom: 0%;
	padding-bottom: 10px;
}

