@charset "UTF-8";

/* ***********************************************************************************************************************************************************************************************************************
 *1.PC
************************************************************************************************************************************************************************************************************************ */
.pc { display: block !important; }
.sp { display: none !important; }
	
.br-pc { display:block; }
.br-sp { display:none; }
	
.clear-fix10 {clear: left;height: 10px;}
.clear-fix20 {clear: left;height: 20px;}
.clear-fix30 {clear: left;height: 30px;}
.clear-fix40 {clear: left;height: 40px;}
.clear-fix50 {clear: left;height: 50px;}
.clear-fix60 {clear: left;height: 60px;}
.clear-fix80 {clear: left;height: 80px;}
	

/* --------------------------------------------------------------------------------------------------------フォントサイズ指定 */
.t10{font-size: 0.8vw;line-height: 1.3vw;}
.t56{font-size: 3.3vw;}

/* --------------------------------------------------------------------------------------------------------ボディ関係 */
body {
	font-size: 1.5rem;
	line-height: 2.5rem;
} 
.clearfix::after {
   content: "";
   display: block;
   clear: both;
}
.topfix{
	margin-top: 15px;
}

/* --------------------------------------------------------------------------------------------------------フェードイン */
.delayed-image {
	/* じわっと画像が表示される */
 	animation: fadeIn 4s ease 0s 1 normal;
    -webkit-animation: fadeIn 4s ease 0s 1 normal;
}

/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}

/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* 画面外にいる状態 */
.fadein {
    opacity : 0;
    transform : translate(0, 100px);
    transition : all 1000ms;
    }

/* 画面内に入った状態 */
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

/* --------------------------------------------------------------------------------------------------------メインメニュー*/
header{
	width: 96%;
	margin: 30px auto 0;
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 2%;
	z-index: 999999;
}
header img{
	width: 300px;
}
header ul.mainmenu{
	margin-top: 0;
}
header ul.mainmenu li{
	display: inline-block;
	list-style: none;
	font-weight: 500;
	border: 1px solid #707070;
	padding: 15px 45px;
	border-radius: 45px;
	margin-left: 15px;
	background-color: #F8F8F8;
}
header ul.mainmenu li.contact{
	background-color: #ea5000;
	color: white;
	border: none;
}

/* --------------------------------------------------------------------------------------------------------FV*/
.fv{
	width: 90%;
	margin: 0 auto;
	padding: 200px 0 0;
}
.fv h1{
	font-size: 6rem;
	margin-bottom: 60px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.fv p{
	margin-bottom: 80px;
	font-weight: 200;
	line-height: 3rem;
}
.fv img.works{
	width: 150px;
}
.fv .workbox{
	width: 100%;
	margin: 80px 0;
}
.fv .workbox ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
.fv .workbox ul li{
	width: 33%;
	background-color: #fff;
	border-radius: 20px;
}
.fv .workbox ul li img{
	display: block;
	width: 80%;
	margin: 0 auto 10%;
	vertical-align: middle;
}

/* --------------------------------------------------------------------------------------------------------制作事例*/
.casearea{
	display: block;
	width: 86%;
	margin: 0 auto;
	padding: 100px 0 0;
}
.casearea p.mid{
	font-weight: 600;
	margin-bottom: 30px;
}
.casearea p{
	font-weight: 300;
	margin-bottom: 100px;
	line-height: 3rem;
}
.casearea img.main{
	display: block;
	width: 60%;
	margin: 0 auto 50px;
}
.casearea img{
	width: 100%;
	margin-bottom: 50px;
}
.backbtn{
	display: block;
	width: 180px;
	margin: 0 auto;
	text-align: center;
	border: 1px solid #707070;
	padding: 10px 40px;
	border-radius: 40px;
	margin-bottom: 100px;
}
a{
	color: #000;
	text-decoration: none;
}












/* --------------------------------------------------------------------------------------------------------コンタクトフォーム*/
.formbox{
	width: 800px;
	margin: 0 auto 0;
	padding:100px 0;
}
.formbox h2{
	font-size: 3.6rem;
	font-weight: 600;
	margin-bottom: 50px;
	text-align: center;
}
.formbox p{
	text-align: center;
	margin-bottom: 30px;
}
.formbox .privacy{
	text-align: left;
	margin-top: 50px;
}
.formbox .privacy p{
	font-size: 1.4rem;
	text-align: left;
}

/* ------------------------------------------------------------会社概要*/

.salearea{
	width: 800px;
	display: block;
	margin: 0 auto 200px;
	padding-top: 300px;
	clear: both;
}
.salearea img{
	display: block;
	width: 400px;
	margin: 0 auto 80px;
}
.salearea h2{
	font-size: 1.6rem;
	color: #000;
	margin-bottom: 30px;
}

.salearea dl{
	display: flex;
	justify-content: left;
	border-bottom: 1px solid #DEDEDE;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.salearea dl dt{
	width: 150px;
}

.salearea dl dd{
	color: #000;
}

/* ------------------------------------------------------------サンクスページ*/

.thanks{
	width: 100%;
	padding: 30% 0;
	clear: both;
}
.thanks img{
	display: block;
	width: 80%;
	margin: 0 auto 80px;
}
.thanks p{
	text-align: center;
}










/* ------------------------------------------------------------フッター*/
.footer{
	display: block;
	width: 100%;
	text-align: center;
	color: #000;
	clear: both;
}
.footer .footarea{
	width: 85%;
	margin: 0 auto;
	padding: 50px 0 30px;
}
.footer .footarea img{
	width: 250px;
}
.footer .footarea p{
	font-size: 1.2rem;
	margin-top: 50px;
}
.footer .footarea a{
	text-decoration: none;
	color: #000;
}
/* ------------------------------------------------------------フッター常時表示*/
#footer-fixed{
    position: fixed;
    bottom: 150px;
    left: 5%;
    width: 150px;
    height: 70px; 
	z-index: 5;
}
#footer-fixed ul{
	width: 95%;
	display: -webkit-flex;
	display: table-row;
	margin: 0 auto;
}
#footer-fixed ul li{
	margin: 0 1% 10px;
	list-style: none;
	text-align: center;
}
#footer-fixed ul li img{
	width: 100%;
	box-shadow: 0 5px 8px rgba(0,0,0,0.2);
	border-radius: 50px;
}
.button{
  position: fixed;
  right: 0;
  bottom: 0;
  font-size: 50px;
  cursor: pointer;
  transition: .8s;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}