@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

/*========= ローディング画面のためのCSS ===============*/
.loading-wrap {
  position: fixed;
  height:100vh;
  width:100vw;
  background-color:#CBC9C9;
  left: 0px;
  top: 0px;
  z-index: 99999;
  width: 100%;
  height: 100%;
}
.loading-anime {
  animation-name: loadinganime;
  animation-timing-function:ease;
  animation-duration: 3.5s;
  animation-fill-mode: forwards;
}
@keyframes loadinganime {
  from {
    transform: translateX(0);
  }
  30%, 70% {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}


#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
　color: rgba(255, 255, 255, 0.3);
  font: 400 300% Baskerville, 'Palatino Linotype', Palatino, serif;
}


#splash-logo:before {
  content: attr(data-content);
  position: absolute;
  overflow: hidden;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.6);
  animation: loading 1.5s linear;
  animation-delay: 0.6s;
}

@keyframes loading {
  from {
    max-width: 0;
  }
}




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

#splash-logo {
  font: 400 200% Baskerville, 'Palatino Linotype', Palatino, serif;
}

}

/*========= ここまでローディング画面のためのCSS ===============*/




/*PC　body*/
body {
  min-width: 1000px;
  color: #333; /* RGB */
  background-color: #FAFAFA;
  font-family: "Noto Serif JP", Noto Sans JP, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.75rem;
  text-align: center;
 -webkit-font-smoothing: antialiased;
}


/*PC inner*/
.inner{
  width: 86%;
  min-width: 720px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}



/*1000以下 inner*/
@media screen and (max-width: 1000px){
		
.inner{
  width: 100%;
  min-width: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 8%;
  box-sizing: border-box;
}	
}



/* スマホ　ボディ*/ 
@media screen and (max-width: 520px) {
 body {
  color: #333; /* RGB */
  background-color: #FAFAFA;
  font-family: "Noto Serif JP", Noto Sans JP, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.75rem;
  text-align: left;
  min-width: auto;
 }
	
/*スマホ inner*/		
.inner{
  width: 100%;
  min-width: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}	
	
}

/*見出しの指定*/
h1{
  width: 6.458vw;
  position: fixed;/*relateveは225行目に記入*/
  right: 2.778vw;
  top: 2.778vw;
  z-index: 2;
}


h2{
  font-size: 2.778vw;
  font-family: a-otf-ryumin-pr6n, serif;
  color: #333333;
  font-style: normal;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.5rem;
  line-height: 1.7;
}

h3{
  font-size: 1.667vw;
  font-family: "Noto Serif JP", Noto Sans JP, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  color: #333333;
  text-align: left;
  font-weight: 400;
  line-height: 1.7;
}

h3 span{
  font-family:Gothic A1, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}

p{
  font-family:Gothic A1, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 14px;
  letter-spacing: 0.1rem;
  line-height: 1.7;
  font-weight: 400;
}

img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}






/* ハンバーガーメニュー*/
/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
  position: absolute;/*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 3.472vw;
  height: 3.472vw;
  top:5.556vw;
  left:2.778vw;
  /*transform: translateY(-50%);*/
}


/*ボタン内側*/
.openbtn span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background: #6F6F6F;
  width: 25px;
  }
.openbtn span:nth-of-type(1) {
  top:15px; 
}
.openbtn span:nth-of-type(2) {
  top:23px;
}
.openbtn span:nth-of-type(3) {
  top:31px;
}


/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;/*真ん中の線は透過*/
}
.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.openbtn,.hamburger-menu{ /*バツ印固定*/
  position: fixed;
  z-index: 9999;
  display: block;
  margin-right: -20px;
}  

@media screen and (max-width: 520px){
.openbtn{
  width: 20vw;
  height: 9vw

}
}



@media screen and (max-width: 520px){
.openbtn{
  width: 20.472vw;

}
}





.header{
	top:0;/*ポジション設定topを0*/
	height: 100px;/*headerの高さを指定*/
	width:100%;
    background-color: #FAFAFA;
}

@media screen and (max-width: 520px){
.header{
	top:0;/*ポジション設定topを0*/
	height: 80px;/*headerの高さを指定*/
	width:100%;
	position: fixed;
    background-color: #FAFAFA;
    z-index: 2;
}
}


/*ハンバーガーメニュー中身*/
.header .hamburger-menu{
  z-index: 1000;
  position: fixed;
  top:0px;
  left:-100%;
  background-color: #EDEBEB;
  width:100%;
  height:100%;
  transition: .5s;
  text-align: center;
  }
.header .hamburger-menu ul{
  background-color: #EDEBEB;
  padding-left: 100px;
  display: flex;
  flex-direction: column;
  position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
}
.header .hamburger-menu ul li{
  padding-bottom: 60px;
}
.header .hamburger-menu ul li a{
  display: flex;
  flex-direction: row;
  align-items: baseline;
  text-decoration: none;
  color: #333333;
}
/*.header .hamburger-menu ul li:hover{
	background-image: url("../images/ハンバーガーメニューホバー.png");
	background-repeat: no-repeat;
	width: 124px;
}*/

.header .hamburger-menu ul li a p{
  font-weight: 400;
  font-size: 28px;
  font-family: "Noto Serif JP", Noto Sans JP, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  padding-right: 20px;
}
.header .hamburger-menu ul li a span{
  font-family:Gothic A1, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  vertical-align: -5px;
}
.header.nav{
  position: relative;
}
.hamburger-menu.active{
  position: fixed;
  width: 39.1%;
  left:0%;
  }
.header.nav.logo{
  width: 93px;
}

@media screen and (max-width: 520px){
.header .hamburger-menu ul{
  padding-left: 80px;
    top: 50%;
    left: 0;
}
.header .hamburger-menu ul li a p{
  font-size: 18px;
  padding-bottom: 2px;
}
.header .hamburger-menu ul li a span{
  font-size: 14px;
}
		
}


/*1000以下 見出し*/
@media screen and (max-width: 1000px){
h1 {
    width: 9vw;
    position: fixed;
    right: 5vw;
    top: 5vw;
    z-index: 2;
}	
h2{
  font-size: 7vw;
  font-family: A-OTF リュウミン Pr6N, "Noto Serif JP";
  color: #333333;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.5rem;
  line-height: 1.7;
}
h3{
  font-size: 3vw;
}
p{
  font-weight: 400;
}	
	
}





/*スマホ 見出し*/
@media screen and (max-width: 520px){
.nav{
	position: relative;
}
/*.openbtn{
	top: 6%;
	left: 3%;	
}*/
h1 {
    width: 12.458vw;
    position: fixed;
    right: 4.778vw;
    top: 4.778vw;
    z-index: 2;
}	
.header .hamburger-menu{
    z-index: 9;
	width: 60%;
}	
.header .hamburger-menu ul li a{
	display: flex;
	flex-direction: column;
	}	
h2{
  font-size: 9vw;
  font-family: A-OTF リュウミン Pr6N, "Noto Serif JP";
  color: #333333;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.5rem;
  line-height: 1.7;
}
h3{
  font-size: 5vw;
}
p{
  font-weight: 400;
}	
	
}



/*PC　メインビジュアル*/
.mainvisual{
	display: flex;
}
.mainvisual-right{
	width: 62.5vw;
	position: relative;
	right: 0;
}
.mainvisual-left{
	width: 37.5vw;
	position: relative;
	left: 0;
}







/*スマホ　メインビジュアル*/
@media screen and (max-width: 1000px){
.mainvisual{
	display: flex;
	flex-direction: column;
}
.mainvisual-right{
	width: 100%;
	
}
.mainvisual-left{
	width: 100%;
    position: inherit;

}
}





/*PC　下層ページタイトル*/
.page-title{
	position: fixed;
	top:5.3vw;
}
.page-title h2{
	font-family: "Noto Serif JP", Noto Sans JP, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 2.222vw;
	letter-spacing: 0.1rem;
	line-height: 1.5;
}
.page-title h2 span{
	display: block;
	font-family:Gothic A1, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 1.25vw;
	letter-spacing: 0.1rem;
}



@media screen and (max-width: 520px){
.page-title{
	position: fixed;
    top: 6.3vw;
    left: 17vw;
}
.page-title h2{
    font-size: 5.222vw;
}
}



/*PC footer*/
footer{
	background-color: #CBC9C9;
}
.footer-area{
	padding-top: 9.5%;
}
.footer-area_right{
	width: 50%;
	margin-right: 0;
    margin-left: auto;
	padding-bottom: 90px;
}
.footer-area_right .footer-area_right_contents{
	width: 100%;
	display: flex;
	align-items: center;
}
.footer-area .footer-area_right .footer_logo{
	width: 15%;
}
.footer-area .footer-group{
	width: 85%;
	padding-left: 51px;
	box-sizing: border-box;
}
.footer-area .footer-group p{
	padding-bottom: 4%;
	text-align: left;
	letter-spacing: 0.08rem;
}
.footer-area .footer-group ul{
	width: auto;
	display: flex;
	margin: auto;
}
.footer-area .footer-group ul li{
	list-style: none;
	position:relative;
	font-weight: 400;
	padding: 0 2.8vw;
    border-right: 1px solid #707070;
}
.footer-area .footer-group ul li:first-child{
	padding-left: 0px;
}
.footer-area .footer-group ul li:last-child{
	padding-right: 0px;
	border: none;
}
.footer-area .footer-group ul li a{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #333333;
}
.footer-area .footer-group ul li p{
	font-family: "Noto Serif JP", Noto Sans JP, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 16px;
	padding-bottom: 4px;
}
.footer-area .footer-group ul li span{
	font-family:Gothic A1, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 12px;
}
small p{
	font-size: 10px;
	padding-bottom: 2%;
}





/*スマホ　footer*/
@media screen and (max-width: 1000px){
.footer-area_right{
	width: 100%;
	margin: 0 auto;
}
.footer-area{
	background-color: #CBC9C9;
	padding-bottom: 0px;
	padding-top: 80px;
}
.footer-area_right{
	padding-bottom: 0px;
}
.footer-area_right .footer-area_right_contents{
	display: flex;
	flex-direction: column;
}
.footer-area .footer-area_right .footer_logo{
    padding-bottom: 40px;
}
.footer-area .footer-group{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-left: 0px;
	}
.footer-area .footer-group p{
	font-size: 12px;
	padding-bottom: 10%;
	text-align: center;
	letter-spacing: 0.08rem;
}
.footer-area .footer-group ul li{
	font-weight: 400;
	padding: 0 4vw;
    border-right: 1px solid #6F6F6F;
}
.footer-area .footer-group ul li:last-child{
    border: none;
}
.footer-area .footer-group ul li p{
	font-size: 14px;
}

small p{
	text-align: center;
    padding-top: 90px;
    padding-bottom: 20px;
	}		
}


@media screen and (max-width: 520px){
.footer-area .footer-group ul li{
	font-weight: 400;
	padding: 0 2.8vw;
    border-right: 1px solid #6F6F6F;
}
}



/*========= ページトップへ上がるボタン ===============*/

#page-top {
    position: fixed;
    right: 3%;
    bottom: 50px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
	background-color: #707070;
	height:50px;
	width:50px;
	border-radius:50%;
	line-height:48px;
	text-align:center;
	-webkit-appearance: none;
}
#page-top a{
    color: #fff;
    display: inline-block;
	text-decoration: none;
}
#page-top p{
	font-size: 16px;
}


/*========= 動きのためのCSS ===============*/


/* TOPページ　最初の実績だけ */
.works ul li:first-child.fadeUp{
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
animation-delay: 3.5s;
}

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

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


/* TOPページ　最初の実績だけ */
@media screen and (max-width: 1000px){
	
.works ul li:first-child.fadeUp{
animation-delay: 3.5s;
}
	
}


/* page-top　下ふわっ */
#page-top.fadeUp{
animation-duration:1.5s;
}

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

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





/* 下から */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
animation-delay: 0.5s;
}

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

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


/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
animation-delay: 0.5s;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* 上から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
animation-delay: 5s;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(30px);
  }

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


.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
animation-delay: 5s;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(30px);
  }

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



.fadeInTrigger,
.fadeUpTrigger,
.fadeRightTrigger{
    opacity: 0;
}