



/*========= 共通 ===============*/


body{
  font-style: normal;
  max-width: 100%;
}

@font-face {
  font-family: 'myfont';
  src: url('../font/TsunagiGothic.ttf') format('truetype');
  font-display: swap;
}

html,
body{
  margin:0;
  padding:0;
  overflow-x:hidden;
}




/*========= PC ===============*/
@media only screen and  (min-width : 481px) {


  /* パソコンで見たときは"pc"のclassがついた画像が表示される */
  .pc { display: block !important; }
  .sp { display: none !important; }

    /* パソコンで見たときのみ改行 */
  .br-sp {display: none; }

  /* ハンバーガーメニュー、ヘッダー */

.headerpc {
  background-color: #fff;
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

  .logo{
    width:8%;
    position:fixed;
    top: 5px;
	  left: 50px;
  }
/*========= サイドメニュー ===============*/

#menu ul{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    display: flex;
    justify-content: end;
    position: fixed;
    z-index: 9;
    right: 0px;
    top: -10px;
    align-items: center;
}

#menu ul li {
  font-size: 20px;
  margin: 0 10px;
  align-items: center;
}

#menu ul li img{
  display: block;
  width: 250px;
}

#menu ul li a{
    color: #000;
    text-decoration: none;
}


  /* ハンバーガーメニュー、ヘッダー */


  /* top画像 */
.top img{
  display: block;
  width: 40%;
  margin: 80px auto;
}
/* top画像 */


/* 見出し */
h1{
  text-align: center;
  font-size: 40px;
}

.subt{
  margin-top: 80px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
}

.subtc{
  margin-top: 20px;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
}

h2{
  color: #000;
    text-decoration: none;
  margin: 100px auto;
  text-align: center;
  font-size: 50px;
}

h3{
  margin: 100px auto;
  text-align: center;
  font-size: 30px;
}


/* 見出し */

/* 横並び(手数料無料・タレント・商材) */
.muryou,.talent{
  margin: 50px auto;
  display: flex;
  justify-content: center;
  max-width: 40%;
}


.muryou li img,.talent li img{
  display: block;
  margin: 0 auto;
  width: 80%;
}

.shouzai{
  margin: 80px auto;
  display: flex;
  justify-content: center;
  max-width: 40%;
  flex-wrap: wrap;
}

.shouzai li{
  display: block;
  margin: 20px auto;
  width: 30%;

}

.shouzai li img{
  display: block;
  margin: 0 auto;
  width: 100%;
}

.shouzai li p{
  text-align: center;
  font-size: 20px;
}


.shouzaisub{
  margin: 80px auto;
  display: flex;
  justify-content: center;
  max-width: 40%;
  padding-left: 0;
  flex-wrap: wrap;
}

.shouzaisub li{
  display: block;
  margin: 20px 5px;
  width: 20%;

}

.shouzaisub li img{
  display: block;
  margin: 0 auto;
  width: 100%;
}

.shouzaisub li p{
  text-align: center;
  font-size: 20px;
}



/* 横並び(手数料無料・タレント・商材) */


/* 問い合わせ */
.toiawaseimg img{
  display: block;
  margin: 50px auto;
  width: 30%;
}

/* 問い合わせ */


/* フッター */
.footer{
  margin-top: 100px;
  width: 100%;
  background-color: #999;
  padding: 50px 0 50px 10px;
}

.footer img{
  display: block;
  width: 10%;
  margin-bottom: 50px;
}

.footer p{
  line-height: 30px;
  font-size: 15px;
}

.footer p a{
    color: #000;
    text-decoration: none;
}

/* フッター */

.spbanner{
  position: fixed;
  bottom: 0;
  left: 0;
}

.spbanner img{
  width: 100%;
}


  }











/*========= スマホ ===============*/
@media only screen and  (max-width : 481px) {
    


/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
.pc { display: none !important; }
.sp { display: block !important; }

  /* パソコンで見たときのみ改行 */
  .br-pc {display: none; }


/* ハンバーガーメニュー、ヘッダー */

  .headersp{
    background-color: #fff;
    height: 70px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

  .logo{
    padding: 10px auto;
    width:30%;
    position:fixed;
	  left: 10px;
    top: 10px;
  }

/*========= ハンバーガーメニュー ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
    background-color: #666;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	  background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

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

/*========= サイドメニュー ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	  top:0;
    right: -120%;
	   width:80%;
    height: 100vh;/*ナビの高さ*/
	  background:#999;
    /*動き*/
	  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:40%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
  text-align: left;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:20px 0;
	display: block;
  border-bottom: solid 1px #333;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
  /* ハンバーガーメニュー、ヘッダー */

/* top画像 */
.top img{
  display: block;
  width: 100%;
  margin: 70px auto;
}
/* top画像 */


/* 見出し */
h1,h3{
  text-align: center;
  font-size: 20px;
}

.subt{
  margin-top: 30px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
}

.subtc{
  margin-top: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

h2{
  color: #000;
  text-decoration: none;
  margin: 80px auto;
  text-align: center;
  font-size: 30px;
}

/* 見出し */


/* 横並び(手数料無料・タレント・商材) */
.muryou,.talent,.shouzai{
  margin: 50px auto;
  text-align: center;
  padding-left: 0;
  display: flex;
  justify-content: center;
}

.muryou li img,.talent li img,.shouzai li img{
  display: block;
  margin: 0 auto;
  width: 95%;
}

.shouzai{
  margin: 80px auto;
  display: flex;
  justify-content: center;
  max-width: 100%;
  flex-wrap: wrap;
}

.shouzai li{
  display: block;
  margin: 10px auto;
  width: 30%;

}

.shouzai li img{
  display: block;
  margin: 0 auto;
  width: 100%;
}

.shouzai li p{
  text-align: center;
  font-size: 16px;
}

.shouzaisub{
  padding-left: 0;
  margin: 80px auto;
  display: flex;
  justify-content: center;
  max-width: 100%;
  flex-wrap: wrap;
}

.shouzaisub li{
  display: block;
  margin: 10px 5px;
  width: 30%;
}

.shouzaisub li img{
  display: block;
  margin: 0 auto;
  width: 100%;
}

.shouzaisub li p{
  text-align: center;
  font-size: 15px;
}

/* 横並び(手数料無料・タレント・商材) */


/* 問い合わせ */
.toiawaseimg img{
  width: 100%;
}
/* 問い合わせ */

/* フッター */
.footer{
  margin-top: 50px;
  width: 100%;
  background-color: #999;
  padding: 50px 0 150px 10px;
}

.footer img{
  display: block;
  width: 40%;
  margin-bottom: 50px;
}

.footer p{
  line-height: 30px;
  font-size: 15px;
}

.footer p a{
    color: #000;
    text-decoration: none;
}

/* フッター */

.spbanner{
  position: fixed;
  bottom: 0;
  left: 0;
}

.spbanner img{
  width: 100%;
}

  }

