@charset "UTF-8";


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

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

li {
	list-style: none;
}

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

/* アニメーションスタートの遅延時間を決める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
===================================*/
.fuwa_moto {
 	opacity: 0;
 	transform: translateY(50px);
 }

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

/*==================================================
消えたり大きさを変えたりするアニメーション
===================================*/
 @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.3;
    }
    50%{
        opacity: 1;
    }
	100%{
        opacity: 0.3;
    }
}

/*==================================================
トップページ
===================================*/
.page1{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	font-family: 'Lato', sans-serif;
	font-weight: 100;
	overflow: hidden;
}
.page1_bg {
	overflow: hidden;
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	height: 110vh;
	background-image: url(../images/d_top.png);
	background-size: cover;
	background-position: center;
	animation-name: sample-animation;
    animation-duration: 50s;
    animation-iteration-count: infinite;
	opacity: 1;
}

.page1_bg2 {
	overflow: hidden;
	position: fixed;
	top: 0px;
	left: 0;
	width: 120%;
	height: 100vh;
	background-image: url(../images/d_top2.png);
	background-size: cover;
	background-position: center;
	opacity: 1;
}
.page1_bg3 {
	overflow: hidden;
	position: fixed;
	top: 0px;
	left: 0;
	width: 120%;
	height: 100vh;
	background-image: url(../images/d_top3.png);
	background-size: cover;
	background-position: center;
	opacity: 1;
}

.logo1 {
	position: fixed;
	margin: 0 auto;
	top: 45%;
	left: 0;
	right: 0;
	width: 150px;
	height: auto;
	z-index: 1;
}
#logo1 {
	width: 100%;
	transform: scale(1);
	transition: all ease-in-out 1s;
}
#logo1.on {
	transform: scale(0);

}

.logo2 {
	position: fixed;
	top: 3%;
	left: 4%;
	width: 150px;
	z-index: 10000000;
}
#logo2 {
	width: 0;
	transition: all ease-in-out 1s;
	opacity: 0;

}

#logo2.on {
	width: 100%;
	opacity: 1;
	transition: all ease-in-out 1s;
}





/*==================================================
ナビゲーション
===================================*/
#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);
}


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

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




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

#scrolldown1{
  position:fixed;
  width: 150px;
  height: 140px;
  right:50px;
  bottom:5%;
  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;
  }
}


/*==================================================
welcomeページ
===================================*/
.welcome {
	overflow: hidden;
	position:relative;
	top: 100%;
	width: 100%;
	height: 200vh;
	z-index: 1000000;
}

.black {
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, .3);
	opacity: 0;
}
.black2 {
	opacity: 1;
	transition: all ease-in-out 1s;
}
.title {
	width: 400px;
	height: auto;
	margin: 0 auto;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
    color: #ffffff;
	padding-top: 15%;
 }

.title h1{
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 5rem;
	letter-spacing: 0.02em;
	text-align: center;
	line-height: 40px;
	margin-bottom: 5%;
}


.title p {
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 300;
 	text-align: center;
 	font-size: 1.3rem;
 	line-height: 30px;
 	padding: 4% 0 2%;
	letter-spacing: 0.05em;
 }
 .title span {
	font-size: 1.5rem;
 }
.sigoto {
	width: 250px;
	height: auto;
	margin: 60px auto 0;
}
.uke {
	font-size: 1.3rem;
	color: #fff;
	font-family: 'IBM Plex Sans JP', sans-serif;
	text-align: center;
	font-weight: 100;
}
.sigoto_box {
	width: 250px;
	height: auto;
	background-color: rgba(0, 0, 0, .3);
	border-radius: 8px;
	margin-top: 20px;
	padding: 0 20px;
}
.sigoto_box p {
	font-size: 1.5rem;
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 200;
	line-height: 50px;

}
.sigoto_box p:nth-child(1) {
	border-bottom:1px solid #fff ;
}



 /*==================================================
top_photoページ
===================================*/
 #top_photo {
	position: relative;
 	width: 100%;
	overflow: hidden;
	height: auto;
	background-color: #d5d3d3;
	aspect-ratio: 2 / 2.3;
	z-index: 3;
 }

 .top_photo_inner {
	position: relative;
 	width: 	70%;
	margin-left: 15%;
 	height: auto;
	display: flex;
	
 }
 .top_photo_title {
	position: absolute;
	top: 0;
	left: 10%;
	margin-top: 5%;
	width: 30%;
	height: auto;
	color: #686666;
	aspect-ratio: 5 / 2;
	padding: 1.5%;
	box-shadow: inset -5px -5px 10px 0px rgba(255, 255, 255, 0.5), inset 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
 }
 .top_photo h1 {
	font-size: 3vw;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	border-bottom: 1px solid #686666 ;
	line-height: 7rem;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
 }
.top_photo p {
	font-size: 1.1vw;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 200;
	line-height: 2.5rem;
	margin-left: 10px;
}
.top_photo_box1 {
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 35%;
	background-color: #9c9797;
	width: 45%;
	height: auto;
	aspect-ratio: 4.5 / 3.5;
}

.top_photo_box1 div {
	position: absolute;
	top: 60%;
	left: -15%;
	width: 90%;
	height: auto;
	aspect-ratio: 5 / 3.5;
	background-image: url(../images/bike1.png);
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}
.top_photo_box1 p {
	position: absolute;
	right: 5%;
	top: 40%;
	font-size: 3.5vw;
	font-family: 'Alegreya Sans SC', sans-serif;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.05em;
}
.top_photo_box2 {
	position: absolute;
	top: 0;
	right: -5%;
	margin-top: 20%;
	background-color: #9c9797;
	width: 40%;
	height: auto;
	aspect-ratio: 4 / 5;
}

.top_photo_box2 div {
	position: absolute;
	top: 16%;
	left: -26%;
	width: 85%;
	height: auto;
	aspect-ratio: 5.5 / 6;
	background-image: url(../images/cosme1.png);
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}
.top_photo_box2 p {
	position: absolute;
	right: 5%;
	top: 40%;
	font-size: 3.5vw;
	font-family: 'Alegreya Sans SC', sans-serif;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.05em;
}
.top_photo_box3 {
	position: absolute;
	top: 0;
	left: -4%;
	margin-top: 90%;
	background-color: #9c9797;
	width: 45%;
	height: auto;
	aspect-ratio: 5 / 4.7;
}

.top_photo_box3 div {
	position: absolute;
	top: 0;
	right: -10%;
	width: 100%;
	height: auto;
	margin-top: -10%;
	aspect-ratio: 5 / 4;
	background-image: url(../images/portraits1.png);
	background-size: cover;
	background-position: top;
	border-radius: 10px;
}
.top_photo_box3 p {
	position: absolute;
	left: 10%;
	top: 80%;
	font-size: 3.5vw;
	font-family: 'Alegreya Sans SC', sans-serif;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.05em;
}
.top_photo_box4 {
	position: absolute;
	top: 0;
	right: 0%;
	margin-top: 85%;
	background-color: #9c9797;
	width: 52%;
	height: auto;
	aspect-ratio: 6 / 4;
}

.top_photo_box4 div {
	position: absolute;
	top: -30%;
	right: -5%;
	width: 70%;
	height: auto;
	aspect-ratio: 5 / 7;
	background-image: url(../images/flower1.png);
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}
.top_photo_box4 p {
	position: absolute;
	left: 5%;
	top: 40%;
	font-size: 3.5vw;
	font-family: 'Alegreya Sans SC', sans-serif;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.05em;
}
.top_photo_inner a {
	position:relative;
	top: 0;
	left: 0;
	right: 0;
	width: 300px;
	color: #fff;
	font-size: 1.5rem;
	padding: 20px;
	border-radius: 27px;
	background-color: #000;
	margin: 0 auto;
	display: block;
	margin-top: 140%;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-align: center;
	transition:all .2s ease-in-out;
}
.top_photo_inner a:hover {
	border-radius: 10px;
	background-color: #555;
	transition:all .2s ease-in-out;
	width: 250px;
	color: #edb02c;
}


 /*==================================================
top_webページ
===================================*/
.top_web {
	position: relative;
	width: 100%;
    overflow: hidden;
	height: auto;
	background-color: #2A364D;
	aspect-ratio: 4 / 4;
	z-index: 3;
}
.top_web_title {
	position: absolute;
	top: 0;
	left: 8%;
	margin-top: 10%;
	width: 30%;
	height: auto;
	color: #969696;
	aspect-ratio: 5 / 2;
	padding: 2%;
	box-shadow: inset -5px -5px 10px 0px rgba(52, 79, 116, 0.5), inset 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
 }
.top_web h1 {
	font-size: 3vw;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	border-bottom: 1px solid #686666 ;
	line-height: 6rem;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
 }
.top_web p {
	font-size: 1.1vw;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 200;
	line-height: 2.5rem;
	margin-left: 10px;
}

.swiper {
	margin-top: 30%;
}
.swiper-slide {
	border-radius: 10px;
}

.swiper-slide img {
	height: auto;
	width: 100%;
  }
.swiper-slide p {
	width: 100%;
	color: #fff;
	text-align: center;
	margin-top: 30px;
}
.swiper-slide .span1 {
	font-weight: 100;
	font-size: 1.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;		
}
.swiper-slide .span2 {
	font-weight: 200;
	font-size: 1.7rem;
	font-family: 'Lato', sans-serif;
	margin-left: 0px;
	text-align: center;	
}
.swiper-pagination {
	opacity: 0;
}
.swiper-button-next {
	padding-right: 22%;
	--swiper-navigation-color:rgb(254, 254, 254, .5);
}
.swiper-button-prev {
	padding-left: 22%;
	--swiper-navigation-color:rgb(254, 254, 254, .5);
}


.web_button a{
	position: relative;
	display: block;
	top: 0%;
	left: 0;
	right: 0;
	width: 300px;
	height: auto;
	padding: 20px;
	background-color: #3b689b;
	text-align: center;
	border-radius: 27px;
	font-size: 1.5rem;
	margin: 0 auto;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	transition:all .2s ease-in-out;
	margin-top: 10%;
}
.web_button a:hover {
	border-radius: 10px;
	background-color: #918f8f;
	transition:all .2s ease-in-out;
	width: 250px;
	color: #3c372c;
}



/*==================================================
 Instagramページ
===================================*/


.insta {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 4/3.5;
	z-index: 2;
	overflow: hidden;
}
#insta_bg1 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-image: url(../images/footer1.png);
	background-size: cover;
	background-position:center;
	opacity: 0;
}
#insta_bg1.on {
	opacity: 1;
}

.insta_bg4 {
	position: absolute;
	aspect-ratio: 4/3.5;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	background-color: #cdc9c1;

}
.insta .inner {
	position: absolute;
	top: 0%;
	left: 10%;
	width: 80%;
	height: auto;
	aspect-ratio: 4/3;
	z-index: 100000000;
}
.insta_test_bg {
	position: absolute;
	top: 15%;
	left: -2%;
	width: 80%;
	height: auto;
	aspect-ratio: 4.5/3;
	background-color: #714D4D;
}
.insta_title {
	position: absolute;
	top: 20%;
	left: 7%;
	width: 30%;
	height: auto;
	aspect-ratio: 4/3;
	color: #292828;
	z-index: 3;
	padding: 10px 10px 0 5px;
	box-shadow: inset -5px -5px 10px 0px rgba(52, 79, 116, 0.5), inset 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.insta_title h1 {
	font-size: 3vw;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	border-bottom: 1px solid #332b2b ;
	line-height: 6rem;
	letter-spacing: 0.05em;
	margin-left: 5%;	
 }
 .insta_title p {
	font-size: 1.1vw;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 200;
	line-height: 2.5rem;
	margin-left: 5.2%;
	margin-top: 10px;
}
.insta_wiget {
	position: absolute;
	top: 40%;
	margin-left:10%;
	width: 80%;
	height: auto;
	background-color: #ffffff;
	display: flex;
	flex-wrap: wrap;
	box-shadow: 1px 1px 5px  rgba(0, 0, 0, .2);
	z-index: 10000000;
}
.wiget_box {
	width: 31.3%;
	height: auto;
	background-color: #000;
	aspect-ratio: 1/1;
}
.wiget_box:nth-child(1) {
	 background-image: url(../images/wiget1.png);
	 background-size: cover;
	 background-position: center;
	 margin-right: 1.5%;
	 margin-bottom: 1.5%;
	 margin-top: 1.5%;
	 margin-left: 1.5%;

}
.wiget_box a {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
}
.wiget_box:nth-child(2) {
	background-image: url(../images/wiget2.png);
	background-size: cover;
	background-position: center;
	margin-right: 1.5%;
	margin-bottom: 1.5%;
	margin-top: 1.5%;
}
.wiget_box:nth-child(3) {
	background-image: url(../images/wiget3.png);
	background-size: cover;
	background-position: center;
	margin-bottom: 1.5%;
	margin-top: 1.5%;

}
.wiget_box:nth-child(4) {
	background-image: url(../images/wiget4.png);
	background-size: cover;
	background-position: center;
	margin-right: 1.5%;
	margin-bottom: 1.5%;
	margin-left: 1.5%;
}
.wiget_box:nth-child(5) {
	background-image: url(../images/wiget5.png);
	background-size: cover;
	background-position: center;
	margin-right: 1.5%;
	margin-bottom: 1.5%;

}
.wiget_box:nth-child(6) {
	background-image: url(../images/wiget6.png);
	background-size: cover;
	background-position: center;
	margin-bottom: 1.5%;
}

.insta_button {
	position:absolute;
	top: 85%;
	left: 0;
	right: 0;
	width: 300px;
	color: #fff;
	font-size: 1.5rem;
	padding: 20px;
	border-radius: 27px;
	background-color: #93928c;
	margin: 0% auto 0;
	display: block;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-align: center;
	transition:all .2s ease-in-out;
	z-index: 100;
}
.insta_button:hover {
	border-radius: 10px;
	background-color: #646a90;
	transition:all .2s ease-in-out;
	width: 250px;
	color: #e0ed2c;
}

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

.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: 330px;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 30px;
}
.form_p {
	font-size: 1.3rem;
	font-weight: 200;
	font-family: 'Noto Sans JP', sans-serif;
	color: #ffffff ;

}
.con_form {
	width: 250px;
	height: auto;
	margin-left: 10%;
	padding-top: 20px;
}
.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;
}
.foot_logo {
	position: absolute;
	display: block;
	width: 200px;
	left: 50%;
	top: 40%;
	transform: translateX(-40%);

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

}
.inputs {
	width: 100%;
	height: 30px;
	margin-top:10px ;
	padding: 5px;
	border-radius: 3px;
	font-size: 1.4rem;
	border: 1px solid #fff;
	background-color:rgba(255, 255, 255, 0.4);
}

.inputs2 {
	width: 100%;
	margin:10px auto 20px ;
	height: 6em;
	padding: 5px;
	border-radius: 3px;
	font-size: 1.4rem;
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, 0.4);
}
::placeholder {
	color: #fff3f3;
	font-weight: 300;
  }
  


.button {
	display: block;
	width: 100px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.4);
	text-align: center;
	border-radius: 3px;
	color: #bab9b9;
	font-size: 1.4rem;
	font-family: 'Noto Sans JP', sans-serif;
	border: 1px solid #fff;
	
}

.button:hover {
	background-color: rgba(255, 255, 255, 0.6);
	color: #000000;
	transition: 0.2s;
}

.menu_foot {
	position: absolute;
	top: 18%;
	right: 2%;
	width: 20%;
	height: auto;
}
.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;
}
