@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

/* Font
*****************************************************************/

body {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight:500;
	font-feature-settings: "palt" 1;
	line-height: 1.8em;
	letter-spacing: .05em;
	overflow-x: hidden
	-webkit-text-size-adjust: 100%;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}

html { font-size: 62.5%; }
body { background-color: #000; font-size: 16px; font-size: 1.6rem; color: #fff; }

::selection {
	color: #000;
	background-color: #fff;
}

.gf2, .gf2-b {
 font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.fp {
	font-family: FOT-マティス Pro L;
}

.fp2, .fp2-b {
	font-family: "TazuganeGothicStdN-Regular";
	letter-spacing: .1em;
}

a {
	color: #fff;
}

a:hover {
	text-decoration: underline;
}

.btn_lnk a {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	letter-spacing: .1em;
	color: #fff;
	background-color: #262626;
	padding: 1em 1.4em;
	border-radius: 13px;
	transition: .3s all;
	overflow: hidden;
}

.btn_lnk a:hover {
	color: #000;
	background-color: #fff;
	text-decoration: none;
	transition: .3s all;
}

/* header  */

header div {
	opacity: 0;
	transition: .3s all;
}

header div.lang {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
}

header div h1 {
	position: fixed;
	bottom: 50px;
	right: 70px;
	z-index: 1000;
}

header.logo_on div {
	opacity: 1;
}

header div.lang a:hover {
	text-decoration: none;
	border-bottom: 1px solid #fff;
}

header div.lang a.active {
	border-bottom: 1px solid #fff;
}

/* 言語切り替え */
.en {
	display: none;
}

html, body {
	overflow-x: hidden;
}

/* firstview */
#slider {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
}

#slider h2 {
	font-size: 5vw;
	color: #fff;
	text-align: center;
	width: 100vw;
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on .3s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}


.fade-out {
	opacity: 1;
	transition: opacity 0.5s ease;
}

section.wrapper {
	margin-top: 100vh;
	padding-top: 60vh;
	position: relative;
	width: 100vw;
	height: auto;
	background-image: url(../images/logo_bg2.png);
	background-size: cover;
	background-attachment: fixed;
	z-index: 100;
	animation: floatBackground 5s ease-in-out infinite;
	overflow: hidden;
}

section.wrapper.iOSoff {
	background-image: none;
	background-color: #000;
}

@keyframes floatBackground {
  0%, 100% {
    background-position: center 0;
  }
  50% {
    background-position: center 10px;
  }
}

section.wrapper.end_area {
	background-image: none !important;
	background-color: #000;
}

.fadeLogo {
	animation-name:fadeLogoAnime;
	animation-duration: 3s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeLogoAnime{
  from {
	opacity: 0;
	transform: translateY(50px);
  }

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

/* scroll */

.scrolldown1 {
	position:absolute;
	left:50%;
	bottom:10px;
	height:50px;
}

.scrolldown1::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #eee;
	/*ループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

/* font */

h3 {
	font-size: 4vw;
	letter-spacing: .08em;
}

div p.jp {
	font-size: 2vw;
	line-height: 4vw;
	text-align: justify;
}

div p.en {
	font-size: 2.4vw;
	line-height: 4.8vw;
}

/* animation */

.blur {
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}
 
.blurTrigger {
	opacity: 0;
}

.delay-time03 { animation-delay: 0.3s; }
.delay-time06 { animation-delay: 0.6s;}
.delay-time08 { animation-delay: 0.8s;}
.delay-time10 { animation-delay: 1s;}
.delay-time12 { animation-delay: 1.2s;}
.delay-time14 { animation-delay: 1.4s;}
.delay-time16 { animation-delay: 1.6s;}
.delay-time18 { animation-delay: 1.8s;}

/* about */

.fabout {
	margin: 3% 3% 100vh 3%;
}

.fabout h3 {
	line-height: 1.4em;
}

.fabout div {
	margin-bottom: 5vw;
}

.about {
	margin: 3% 3% 30% 3%;
}

.about div {
	margin-bottom: 5vw;
}

.strong {
	margin: 3% 3% 30% 3%;
  display: grid;
  justify-items: end;
}

.strong div {
	margin-bottom: 5vw;
}

/* works */

.works {
	margin-bottom: 30%;
}

.works h3 {
	text-align: center;
}

.works ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 7vw;
}

.works ul li {
	position: relative;
	width: 33.3333vw;
	margin: 0;
	overflow: hidden;
}

.works ul li p {
	font-size: 12px;
	color: #000;
	position: absolute;
	z-index: 3;
	top: 5px;
	left: 10px;
	border-bottom: 1px solid #000;
}

.works ul li img {
	width: 100%;
	height: auto;
	transition: .1s all;
	filter: grayscale(100%);

}

.works ul li a:hover img {
	transform: scale(1.05,1.05);
	transition: .3s all;
	filter: none;
	opacity: 1;
}

.works ul li span {
	background-color: #000;
	color: #fff;
	padding: .6em;
	line-height: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	opacity: 0;
	transition: .3s all;
}

.works ul li a:hover span {
	opacity: 1;
	transition: .3s all;
}

.works .btn_lnk {
	text-align: center;
	margin-top: 7vw;
}

.box{
	opacity: 0;
}

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

@keyframes fadeUpAnime{
  from {
	opacity: 0;
	transform: translateY(100px);
  }

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

/* contact */

.contact {
	margin: 3% 3% 30% 3%;
}

.contact h3 {
	margin-bottom: 7vw;
}

.contact .inner {
	display: flex;
	justify-content: space-between;
}

.contact div .btn_lnk {
	margin-top: 18px;
}

.contact .address a.smlCpas {
	text-transform: lowercase;
}

/* instagram */

.instagram {
	margin-bottom: 30%;
	text-align: center;
}

.instagram h3 {
	text-align: center;
}

.instagram div {
	margin-bottom: 7vw;
}

.instagram ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin: 7vw auto;
	overflow-x: hidden;
}

.instagram ul li {
	width: 30vw;
	height: 30vw;
	margin: 0;
	background-color: #262626;
}

.instagram p.btn_lnk {
}

/* footer */

footer p {
	font-size: 10px;
	text-align: center;
	margin: 60px auto 0;
}

footer {
	padding-bottom: 10px;
}

.sp { display: none; }

@media screen and (max-width: 768px) {

	.sp { display: block; }

	header div h1 {
	}

	#slider h2 {
		font-size: 12vw;
	}

	.scrolldown1 {
	    bottom: 100px;
	}

	.eachTextAnime {
		line-height: 1.4em!important;
	}

	/* font */

	h3 {
		font-size: 8vw;
		/*font-size: min(max(12px, 2vw), 24px);*/
		letter-spacing: .08em;
		line-height: 1.2em;
	}

	div p.jp {
		font-size: 4vw;
		line-height: 8vw;
		text-align: justify;
	}

	div p.en {
		font-size: 4.8vw;
		line-height: 5.6vw;
	}

	/*
	section.wrapper {
		background-image: none;
		background-color: #000;
	}
	*/
	.fabout h3 {
		font-size: 7vw;
		text-align: center!important;
	}

	.about h3 {
		margin-bottom: 14vw;
	}

	/* project */
	.works {
	    margin-bottom: 50%;
	}

	.works ul {
		margin-top: 14vw;
	}

	.works ul li {
		width: 50vw;
	}

	.works ul li span {
		font-size: 12px;
	}

	.works ul li img {
		filter: grayscale(0);
	}

	.works ul li:last-child {
		display: none;
	}

	.works .btn_lnk {
		margin-top: 14vw;
	}

	/* contact */

	.contact {
		margin-bottom: 50%;
	}

	.contact h3 {
		margin-bottom: 14vw;
	}

	.contact .inner {
		flex-wrap: wrap;
	}

	.contact div .btn_lnk {
		margin-top: 14vw;
	}

	.instagram div {
		margin-bottom: 14vw;
	}

	.instagram h3 {
		margin-bottom: 14vw;
	}

	footer {
		line-height: 1em;
		padding-bottom: 160px;
	}

}
