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



/*==================================================
ロゴ
===================================*/
.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: 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);
}





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

#scrolldown1{
  position:fixed;
  width: 150px;
  height: 140px;
  right:50px;
  bottom:5%;
  z-index: 2000;
  opacity: 1;
  transition: all 1s ;
  z-index: 100000000;
}
#scrolldown1.on {
	opacity: 0;
	transition: all 1s ;
    bottom: 50%;
}


/*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;
  }
}

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

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

.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
===================================*/
.foot_p {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-image: url(../images/about.png);
    background-size: cover;
    background-position: center;
}
.bg0 {
	position: relative;
	width: 100%;
	height: auto;
    aspect-ratio: 3/6;
	background-size: cover;
	background-position: center;
	z-index: 1;
    opacity: 1;
    background-color: #D1D1B6;	
}
.page1{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	font-family: 'Lato', sans-serif;
	font-weight: 100;
    z-index: 1000;
}

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

.page1_bg {
	position: fixed;
	top: 15%;
	right: 0;
	width: 85%;
	height: auto;
	aspect-ratio: 3.7/3;
	border-radius: 30px 0 0 30px;
	overflow: hidden;
	z-index: 10;	
	opacity: 1;
	transition: opacity 0s;
    background-image: url(../images/about_top.png);
    background-size: cover;z-index: 10;
}

.page1_bg img {
	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: 55%;
	left: 15%;
	width: 80%;
	height: auto;
	color: #777777;
	aspect-ratio: 5 / 2;
	border-radius: 10px;
	padding: 2%;
	border: 1px solid #17792E;
	opacity: 1;
	z-index: 100;
 }
 #photo_title.on {
	opacity: 0;
	transition: all 1s;
 }
 .photo_title h1 {
	font-size: 7vw;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	border-bottom: 1px solid #686666 ;
	line-height: 5.8rem;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
 }
.photo_title p {
	font-size: 4vw;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 200;
	line-height: 4rem;
	margin-left: 10px;
	text-align: center;
}


 /*==================================================
photoページの説明文

==================================*/
#index1 {
    opacity: 1;
}
#index1.on {
    opacity: 0;
    transition: opacity 1s ;
}


.photo_p_box {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 1000;
	opacity: 1;
    background-color: #D1D1B6;
    margin-bottom: -30%;
	z-index: 1000000;
 }

 .photo_p {
	position: sticky;
	top: 20%;
	left: 10%;
	width:80%;
	height: auto;
	font-size: 3.2vw;
	font-weight: 300;
	color: #2f2f2f;
	letter-spacing: 0.04em;
	line-height: 2.3rem;
	text-align: center;
	padding-bottom: 10%;
    padding-top: 10%;
 }
 .photo_p h1 {
	font-size: 3rem;
	font-weight: 300;
	font-family: 'Lato', sans-serif;
	color: #17792E;
	text-align: center;
	letter-spacing: 0.05em;
	padding-bottom: 30px;
 }


/*==================================================
CONTACTページ
===================================*/

.contact {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 10;
	overflow:hidden;
	z-index: 1000;
}

.foot_coment {
	position: absolute;
	top: 20%;
	right: 5%;
	font-size: 3rem;
	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 ;

}


.logo1_foot {
	position: absolute;
	top: 30%;
	left: 10%;
	width: 50px;
	height: auto;
	display: none;
}
.logo1_foot img {
	width: 100%;
	height: auto;
}
.foot_logo {
	position: absolute;
	display: block;
	width: 150px;
	left: 10%;
	top: 40%;
	transform: translateX(0%);
}
.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: 1%;
	width: 30%;
	height: auto;
	z-index: 1000000000000;
}
.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;
}