@charset "utf-8";

/* style.css */

/**********************************************
	maine visual
***********************************************/
/* Loading背景画面設定　*/
#splash {
	/*fixedで全面に固定*/
	  position: fixed;
	  width: 100%;
	  height: 100%;
	  z-index: 999;
	  background:#3f3f3f;
	  text-align:center;
	  color:#fff;
	}

	/* Loading画像中央配置　*/
	#splash_logo {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	}

	/* Loading アイコンの大きさ設定　*/
	#splash_logo img {
	  width:260px;
	}

	/* fadeUpをするアイコンの動き */
	.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity: 0;
	}

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

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

.mv {
position: relative;
margin-bottom: 120px;
}

.mv h1 {
	font-family: "Catalina";
	font-size: 80px;
	line-height: 1.2;
	color: #fff;
	position: absolute;
	top: 123px;
	left: 5.33%;
}

.mv h1 span {
display: block;
}

@media screen and (min-width:960px) {
	.mv h1 {
font-size: clamp(76px,7.5vw,205px);
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
	}
	.mv h1 span {
		display: inline-block;
		width: fit-content;
		}
		.mv h1 span:first-of-type {
			margin-right: 0.3em;
		}
}

.mv_img {

}
/*丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:0px;
	left:10%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:60px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 2s ease-in-out infinite,
		cirlemovehide 2s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:90px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 100px;
	background:#eee;
}



.fp_about_sec {
margin-bottom: 150px;
}

.fp_about_sec h2 {
	width: 82.93%;
	margin: 0 auto 20px;
}

.fp_about_sec h2 span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
color: #3f3f3f;
display: block;
}

@media screen and (min-width:960px) {
	.fp_about_sec h2 {
		width: 74.74%;
		font-size: 130px;
		margin-bottom: 40px;
	}

	.fp_about_sec h2 span {
		font-size: 20px;
	}
}

.fp_about_wrap  {
	width: 82.93%;
	margin: 0 auto;
}

@media screen and (min-width:960px) {
	.fp_about_wrap {
		width: 66.35%;
		display: flex;
	}
}

.fp_about_img {
	width: 64.31%;
	margin-bottom: 50px;
}

@media screen and (min-width:960px) {
	.fp_about_img {
	width: 30.14%;
	}
}

.fp_about_txt {

}

@media screen and (min-width:960px) {
	.fp_about_txt {
		width: 61.93%;
		margin-top: 50px;
		margin-left: 100px;
	}
}


.fp_about_name {
	text-align: center;
	margin-bottom: 30px;
}

.fp_about_name span {
display: inline-block;
margin: 0 5px;
}

@media screen and (min-width:960px) {
	.fp_about_name {
		text-align: left;
		font-size: 32px;
		margin-bottom: 50px;
	}
	.fp_about_name span {
		display: inline-block;
		margin: 0 30px;
	}
}

.fp_about_message {
	margin-bottom: 15px;
}

.fp_about_message:last-of-type {
margin-bottom: 50px;
}

@media screen and (min-width:960px) {
	.fp_about_message {
		margin-bottom: 20px;
	}
}

.fp_about_txt a {

}

.button {
	text-align: center;
	}

@media screen and (min-width:960px) {
.button {
text-align: right;
}
}
/*== グラデーションが流れる */

.gradient1{
    /*ボタンの形状*/
    display: inline-block;
    color:#fff;
    padding: 18px 60px;
    border-radius:30px;
    text-decoration: none;
    outline: none;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #2e2e2e 0%, #a9a9a9 25%, #2d2d2d 51%, #080506 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
}

/*hoverした際の、背景の場所とテキスト色の変更*/
.gradient1:hover {
    color: #fff;
    background-position: 99% 50%;
}

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#0f0f0f;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

.fp_skill_sec {
	margin-bottom: 140px;
	background-color: #1f1f1f;
	padding-top: 100px;
	padding-bottom: 150px;
}

.fp_skill_sec h2 {
	width: 82.93%;
	margin: 0 auto 45px;
	color: #fff;
	/* transform: translateY(-50%); */
}

.fp_skill_sec h2 span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	color: #ffffff;
	display: block;
}

@media screen and (min-width:960px) {
	.fp_skill_sec {
		margin-bottom: 200px;
		padding-bottom: 150px;
	}

	.fp_skill_sec h2 {
		width: 74.74%;
		font-size: 130px;
		margin-bottom: 40px;
	}

	.fp_skill_sec h2 span {
		font-size: 20px;
	}
}


.fp_skill_wrap {
	width: 82.93%;
	margin: 0 auto 45px;
	color: #fff;
}

@media screen and (min-width:960px) {
	.fp_skill_wrap {
	width: 49.48%;
	margin: 0 12.60% 0 auto;
	}
}

.fp_skill_ctt {
	margin-bottom: 100px;
}

.fp_skill_ctt:last-of-type {
	margin-bottom: 0;
}

.fp_skill_ctt h3 {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	border-bottom: 1px solid #fff;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.fp_skill_ctt h3 span {
	font-family: "Catalina";
	font-size: 32px;
	color: #fff;
}

.fp_skill_ctt h3 span.num {
	font-size: 12px;
	margin-top: 0.5em;
	margin-left: 0.7em;
}

@media screen and (min-width:960px) {
	.fp_skill_ctt h3 {
		margin-bottom: 50px;
	}
	.fp_skill_ctt h3 span {
		font-size: 64px;
	}
	.fp_skill_ctt h3 span.num {
		font-size: 16px;
		margin-top: 1em;
		margin-left: 0.7em;
		margin-right: 0.5em;
	}
}

.fp_skill_txt {
	margin-bottom: 30px;
}

.tools {
}

.fp_works_sec {
	margin-bottom: 140px;
}

.fp_works_sec h2 {
	width: 82.93%;
	margin: 0 auto 15px;
}

.fp_works_sec h2 span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
color: #3f3f3f;
display: block;
}

@media screen and (min-width:960px) {
	.fp_works_sec {
		margin-bottom: 280px;
	}

	.fp_works_sec h2 {
		width: 74.74%;
		font-size: 130px;
		margin-bottom: 40px;
	}

	.fp_works_sec h2 span {
		font-size: 20px;
	}
}

.fp_works_cmt {
	font-size: 14px;
color: #3f3f3f;
margin-bottom: 110px;
width: 82.93%;
	margin: 0 auto 95px;
}

@media screen and (min-width:960px) {
	.fp_works_cmt {
		font-size: 16px;
		width: 33.65%;
		margin: 0 auto 70px 12.65%;
	}
}

.fp_works_ctt {
	display: grid;
	grid-template-columns: repeat(auto-fit, 300px);
	column-gap: 50px;
	row-gap: 90px;
	justify-content: center;
	width: 80%;
	margin: 0 auto;
}

.fp_works_ctt li {
flex-shrink: 0;
}

@media screen and (min-width:960px) {
	.fp_works_ctt {
		grid-template-columns: repeat(auto-fit, 450px);
		column-gap: 40px;
		row-gap: 123px;
		width: 74.74%;
	}

	.fp_works_ctt li {
	flex-shrink: 0;
	}
}

.fp_works_img {
	display: inline-block;
margin-bottom: 16px;
}

.fp_works_img a {
	overflow:hidden;
}

.fp_works_img a img:hover {
	transform:scale(1.1);
	transition:0.3s;
}

.fp_works_img a:hover {
	opacity:0.5;
	transition:0.3s;
}

@media screen and (min-width:960px) {
	.fp_works_img {
		margin-bottom: 20px;
	}
}

.fp_works_cat {
	font-size: 14px;
color: #8B8B8B;
}

@media screen and (min-width:960px) {
	.fp_works_cat {
		font-size: 16px;
	}
}

.fp_works_ttl {
	font-size: 18px;
color: #3f3f3f;
}

.fp_works_ttl_new:after {
 display        : inline-block;/* インラインボックス定義*/
 content        : "NEW";/* 表示する文字*/
 color          : #ff0000;/* 文字色*/
 font-weight    : bold;/* 太字*/
 font-size      : 7pt;/* ベースの文字サイズ*/
 vertical-align : middle;/* 基準の高さ位置*/
 margin-left    : 5px;/* 左外余白 */
 animation      : s1cAnime 2s infinite alternate; /* アニメ*/
}
@keyframes s1cAnime{
  25% { color : #ff0000 }
  50% { color : #d6d6d6 }
  75% { color : #ff0000 }
  100% { color : #d8d8d8 }
}

@media screen and (min-width:960px) {
	.fp_works_ttl_new:after {
		font-size: 9px;
	}
}


.fp_works_ttl a {
	display: inline-block;
	position: relative;
	text-decoration: none;
}

.fp_works_ttl a::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #00ca40;
	transition: all .3s ease 0s;
}

.fp_works_ttl a:hover {
	cursor: pointer;
}

.fp_works_ttl a:hover::after {
	width: 100%;
}

@media screen and (min-width:960px) {
	.fp_works_ttl {
		font-size: 20px;
	}
}
/* ABOUTページここから */
.about_profile {
	margin-top: 100px;
}

.page_ttl {
	display: block;
	text-align: right;
font-family: "Catalina";
font-size: 100px;
color: #3f3f3f;
/* width: 82.93%; */
/* margin: 0 auto; */
/* transform: translateY(150%); */
}

@media screen and (min-width:960px) {
	.about_profile {
		margin-top: 150px;
	}

	.page_ttl {
		font-size: 300px;
		/* width: 50.57%; */
		/* transform: translateY(100%); */
	}
}

.about_profile_img {
	width: 66.67%;
margin: 30px 0 100px;
box-shadow: 40px 40px 0px 0px rgba(8, 8, 8, 0.9);
}

@media screen and (min-width:960px) {
	.about_profile_img {
		width: 56.25%;
		margin: 150px auto 120px 0;
		box-shadow: 100px 50px 0px 0px rgba(8, 8, 8, 0.9);

	}
	}

.about_profile_sec {
	margin-bottom: 180px;
}

.about_profile_sec h2 {
	width: 82.93%;
	margin: 0 auto 50px;
}

.about_profile_sec h2 span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
color: #3f3f3f;
display: block;
}

@media screen and (min-width:960px) {
	.about_profile_sec {
		margin-bottom: 190px;
	}

	.about_profile_sec h2 {
		width: 74.74%;
		font-size: 130px;
		margin-bottom: 140px;
	}

	.about_profile_sec h2 span {
		font-size: 20px;
	}
}

.about_profile_txt {
	width: 60%;
	margin: 0 auto;
}

.about_profile_txt p {
	text-align: center;
}

@media screen and (min-width:960px) {
	.about_profile_txt {
		width: 21.09%;
		margin: 0 auto 0 12.65%;
	}

	.about_profile_txt p {
		text-align: left;
	}
}

.about_profile_name {
	margin: 0 auto 30px;
}

.about_profile_txt ruby {
font-family: 'Noto Sans JP', sans-serif;
font-size: 40px;
color: #3f3f3f;
font-weight: 300;
}
.about_profile_txt rt {
	font-size: small;
	color: #5f5f5f;
	font-weight: 100;
}

.aligned-content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
  }

  @media screen and (min-width:960px) {
	.aligned-content {
		justify-content: flex-start;
	margin-bottom: 10px;
	}
	.aligned-content span {
		margin-left: 20px;
	}
}

.about_career_sec {
	margin-bottom: 100px;
	background-color: #1f1f1f;
	padding-top: 100px;
padding-bottom: 150px;
}

.about_career_sec h2 {
width: 82.93%;
margin: 0 auto 45px;
color: #fff;
/* transform: translateY(-50%); */
}

.about_career_sec h2 span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
color: #ffffff;
display: block;
}

@media screen and (min-width:960px) {
	.about_career_sec {
		margin-bottom: 280px;
		padding-bottom: 150px;
	}

	.about_career_sec h2 {
		width: 74.74%;
		font-size: 130px;
		margin-bottom: 100px;
	}

	.about_career_sec h2 span {
		font-size: 20px;
	}
}


.about_career_wrap {
	width: 82.93%;
	margin: 0 auto 45px;
	color: #fff;
	display: flex;
	overflow-x: scroll;
}

.about_career_wrap dl {
width: 80%;
margin-left: 40px;
flex-shrink: 0;
}

.about_career_wrap dl:first-of-type{
	margin-left: 0px;
	}


.about_career_wrap dt {
margin-bottom: 20px;
}

.about_career_wrap dd {
	font-size: 14px;
	line-height: 2;
	text-align: justify;
	margin-bottom: 40px;
}

.about_career_wrap::-webkit-scrollbar {
	height: 3px;
}

.about_career_wrap::-webkit-scrollbar-thumb {
	background: #dfdfdf;
border-radius: 3px;
}

.about_career_wrap::-webkit-scrollbar-track {
background: #5e5e5e;
border-radius: 3px;
}

@media screen and (min-width:960px) {
	.about_career_wrap {
		width: 74.79%;
		margin: 0 auto;
		color: #fff;
		display: block;
	}

	.about_career_wrap dl {
		width: 77.09%;
		display: flex;
		margin: 0px auto;
		flex-shrink: 0;
		}
	.about_career_wrap dl:first-of-type{
		margin-left: auto;
			}

	.about_career_wrap dt {
		margin-bottom: 0px;
		}
	.about_career_wrap dd {
		font-size: 16px;
		margin: 0 auto 90px 12.38%;
}
}

.about_strengths_sec {
	margin-bottom: 190px;
}

.about_strengths_sec h2 {
	width: 82.93%;
	margin: 0 auto 45px;
}

.about_strengths_sec h2 span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
color: #3f3f3f;
display: block;
}

@media screen and (min-width:960px) {
	.about_strengths_sec {
		margin-bottom: 400px;
	}

	.about_strengths_sec h2 {
		width: 74.74%;
		font-size: 130px;
		margin-bottom: 190px;
	}

	.about_strengths_sec h2 span {
		font-size: 20px;
	}
}


.about_strengths_img {
	width: 66.67%;
margin: 0 auto 100px;
}

@media screen and (min-width:960px) {
	.about_strengths_img {
		width: 49.48%;
	margin: 0 auto 200px;
	}
	}

.about_strengths_txt {
	width: 82.93%;
	margin: 0 auto 45px;
}
@media screen and (min-width:960px) {
	.about_strengths_txt {
		width: 74.79%;
	}
}

.about_strengths_ctt {
margin-bottom: 110px;
}

.about_strengths_ctt:last-of-type {
	margin-bottom: 0;
}

.about_strengths_ctt h3 {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		border-bottom: 1px solid #3f3f3f;
		margin-bottom: 20px;
		padding-bottom: 5px;
	}

.about_strengths_ctt h3 span.num {
	font-size: 12px;
	margin-top: 0.1em;
	margin-left: 0.1em;
}

.ttl_en {
	font-size: 20px;
	font-family: "Playfale Display";
}

.ttl_en_pc {
	font-size: 64px;
	font-family: "Playfale Display";
	color: #d4d4d4;
	display: none;
}

@media screen and (min-width:960px) {
	.about_strengths_ctt {
		margin-bottom: 170px;
		}

	.about_strengths_ctt h3 {
		margin-bottom: 40px;
	}

	.about_strengths_ctt h3 span.num {
		font-size: 16px;
		margin-top: 3em;
	}

	.ttl_en {
		font-size: 24px;
		margin-top: 2em;
		margin-left: 0.1em;

	}
	.ttl_en_pc {
		display: inline-block;
		margin: 0 0 0 auto;
	}
}

.detail {
	font-size: 14px;
	color: #3f3f3f;
	line-height: 1.5;
}

@media screen and (min-width:960px) {
	.detail {
		font-size: 16px;
	}

}

/* 詳細ページここから */

.works_detail {
margin-top: 100px;
margin-bottom: 195px;
}

.works_detail h1 {
	font-family: Playfair display;
	font-size: 22px;
	font-weight: bold;
	width: 82.93%;
margin: 0 auto 20px;
text-align: center;
}

@media screen and (min-width:960px) {
	.works_detail {
		width: 74.74%;
		margin: 160px auto 210px;
		}

		.works_detail h1 {
			font-size: 64px;
			font-weight: bold;
			width: 100%;
		margin: 0 auto 20px 0;
		text-align: left;
		}
}

.works_detail_int {
width: 82.93%;
margin: 0 auto 100px;
font-size: 14px;
color: #d20000;
}

.works_detail_int a {
	font-size: 12px;
	letter-spacing: 0.1em;
	color: #d20000;
	display: block;
	transition: 0.5s;
}

.works_detail_int a:hover {
	color: #dfdfdf;
}

@media screen and (min-width:960px) {
	.works_detail_int {
		/* width: 37.98%; */
		margin: 0 auto 110px 0;
		font-size: 16px;
		}
		.works_detail_int p {
			margin: 0 auto 20px 0;
			font-size: 16px;
		}
		.works_detail_int a {
		font-size: 14px;
		}
}

.works_eyecatch_img {
	width: 80%;
margin: 0 auto 100px;
display: block;
}

@media screen and (min-width:960px) {
	.works_eyecatch_img {
		width: 51.57%;
		margin-bottom: 300px;
}
}

.works_detail_wrap {
	width: 80%;
margin: 0 auto 100px;
}

@media screen and (min-width:960px) {
	.works_detail_wrap {
		width: 100%;
		margin-bottom: 200px;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.works_detail_img {
	margin: 0 auto 50px;
	display: block;
}

@media screen and (min-width:960px) {
	.works_detail_img {
	width: 41.01%;
	}
}

.works_detail_txt {
width: 82.93%;
margin: 0 auto;
}

.works_detail_txt dl {
margin-bottom: 50px;
}

.works_detail_txt dt {
	font-weight: bold;
	margin-bottom: 15px;
}

.works_detail_txt dd {
	text-align: justify;
}

@media screen and (min-width:960px) {
	.works_detail_txt {
		width: 100%;
		}

		.works_detail_txt dl {
		margin-bottom: 70px;
		}

		.works_detail_txt dt {
			font-weight: bold;
			margin-bottom: 20px;
		}

		.works_detail_txt dd {
			text-align: justify;
		}
}

/*==================================================
ふわっ
===================================*/


/* fadeUp */

.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);
	  }
	}
	/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
	.fadeUpTrigger{
		opacity: 0;
	}