@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: #ffffff;
}
* {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}
p {
	margin: 0;
	padding: 0;
}


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

@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);
    }
}
@keyframes sample-animation3 {
    0%{

        opacity: 0;
    }
    50%{

        opacity: 1;
    }
	100%{

        opacity: 0;
    }
}

/*==================================================
/* トップぺアニメーションスタートの遅延時間を決める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;
	 }
	

/*==================================================
ロゴ
===================================*/
.logo2 {
	position: fixed;
	top: 3%;
	left: 4%;
	width: 150px;
	z-index: 10000000000000;
}
.logo2 img {
	width: 100%;
	height: auto;
}
/*============スクロールアイコン===============*/

#scrolldown1{
	position:fixed;
	width: 150px;
	height: 140px;
	right:50px;
	bottom:5%;
	z-index: 200000;
	opacity: 1;
	transition: all 1s ;
  }
  #scrolldown1.on {
	  opacity: 0;
	  transition: all 1s ;
  }
  
  
  /*Scrollテキストの描写*/
  .scrolldown1 span{
	position: absolute;
	bottom: 10px;
	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;
	}
  }





/*==================================================
ナビゲーション
===================================*/
#header {
	position: fixed;
	top: 0;
	width: 60%;
	margin-left: 25%;
	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);
}

/*============ハンバーガーメニュー===============*/

#header {
	position: fixed;
	top: 0;
	width: 60%;
	margin-left: 25%;
	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;
    display: none;
  }
  
  #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);
}
/*============ハンバーガーメニュー===============*/

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




/*==================================================
photoページtop
===================================*/
.foot_p {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-image: url(../images/website_foot.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
	z-index: 1;
}
.bg0 {
	position: relative;
	width: 100%;
	height: auto;
    aspect-ratio: 3/12;
	z-index: 1;
    opacity: 1;
    background-color: #212a3d;	
    overflow: hidden;
}
.page1{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	font-family: 'Lato', sans-serif;
	font-weight: 100;
    z-index: 1000000;
	background-color: #212a3d;
}

#p_top {
    opacity: 1;
    transition: opacity 2s;
}
#p_top.on {
    opacity: 0;
}

.page1_bg {
	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;
    z-index: 10;

}
.page2_bg {
	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;
    z-index: 10;

}

.page1_bg img {
	margin-right: 30%;
	width: auto;
	height: 100%;
}
.page2_bg img {
	margin-right: 30%;
	width: auto;
	height: 100%;
	animation-name: sample-animation3;
    animation-duration: 5s;
    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: 10000000000;
}
.pagelook a {
	display: inline-block;	
}
.pagelook a:hover {
	color: #fff;
}
.pagelook span {	
	margin: 0 5px 0;
}
#photo_title {
	position: fixed;
	top: 25%;
	left: 13%;
	width: 30%;
	height: auto;
	color: #686666;
	aspect-ratio: 5 / 2;
	border-radius: 10px;
	padding: 2%;
	border: 1px solid #670505;
	opacity: 1;
	z-index: 100;
 }
 #photo_title.on {
	opacity: 0;
	transition: all 1s;
 }
 .photo_title h1 {
	font-size: 3.5vw;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	border-bottom: 1px solid #686666 ;
	line-height: 4rem;
	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: 3rem;
	margin-left: 10px;
	text-align: center;
}



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

 .photo_p {
	position: sticky;
	top: 15%;
	left: 10%;
	width:40%;
	height: auto;
	font-size: 1.1vw;
	font-weight: 300;
	color: #858484;
	letter-spacing: 0.04em;
	line-height: 3rem;
	text-align: center;
	padding-bottom: 5%;
 }

 /*==================================================
websiteページ
===================================*/
#website_pr {
    position: relative;
    width: 100%;
    z-index: 10;
	background-color:#212a3d ;
	padding-top: 10%;
	padding-bottom: 20%;
	overflow: hidden;
}


#website_pr .inner {
    width: 95%;
    margin-left: 2.5%;   
}
.grid_p {
    display: block;
    width: 100%;
	height: auto;
	font-size: 7vw;
	font-family: 'Alegreya Sans SC', sans-serif;
    font-weight: 400;
    font-style: italic;
	color: #fbf7f7;
    margin-left: 5%;
	margin-bottom: 20%;
}
.g_box {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0%;
}
.web_box {
    width: 50%;
    height: auto;    
 }
 .web_box:nth-child(1), .web_box:nth-child(2) {
    margin-bottom: 10%;
 }
 .web_box p,
 .web_box a {
    display: block;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 200;
    color: #fbf7f7;
    text-align: center;
    margin-top: 5%;
 }
 .web_box a {
    font-size: 1.2rem;
    border-radius: 5px;
    background-color: #171717;
    line-height: 3rem;
    width: 90%;
    margin-left: 5%;
 }
.box1 {
    width: 80%;
    height: auto;
    aspect-ratio: 4/3.1;
    margin-left: 10%;
    background-image: url(../images/top_web1.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.box2 {
    width: 80%;
    height: auto;
    aspect-ratio: 4/3.1;
    margin-left: 10%;
    background-image: url(../images/top_web2.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.box3 {
    width: 80%;
    height: auto;
    aspect-ratio: 4/3.1;
    margin-left: 10%;
    background-image: url(../images/top_web3.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.box4 {
    width: 80%;
    height: auto;
    aspect-ratio: 4/3.1;
    margin-left: 10%;
    background-image: url(../images/top_web4.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

/*==================================================
CONTACTページ
===================================*/
/*==================================================
CONTACTページ
===================================*/
.contact {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 10;
	overflow:hidden;
	z-index: 10000000;
}

.foot_coment {
	position: absolute;
	top: 20%;
	right: 10%;
	font-size: 4rem;
	font-family: 'Lato', sans-serif;
	font-weight: 200;
	font-style: italic;
	line-height: 6rem;
	letter-spacing: 0.05em;	
}
.foot {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 240px;
	background-color: rgba(0, 0, 0, 0.4);
}
.form_p {
	font-size: 1.3rem;
	font-weight: 200;
	font-family: 'Noto Sans JP', sans-serif;
	color: #ffffff ;

}
.con_form {
	width: 200px;
	height: auto;
	margin-left: 5%;
	padding-top: 30px;
}
.con_form p {
	font-size: 1.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 200;
	color:"#fff";
	width: 300px;
	height:auto;
}
.placeholder {
	color: #000;
}
.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-animation3 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;
	z-index: 1000000000000;
}
.menu_foot li {
	font-size: 1.9rem;
	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;
}
