@charset "UTF-8";

html,body{
  margin:0;
  padding:0;
}

.selector-for-some-widget {
  box-sizing: content-box;
}
a,ul,li,img{
  margin:0;
  padding:0;
  vertical-align:top;
  text-decoration: none;
}
a:link{color:#000;}
a:hover{color:#000;}
a:active{color:#000;}
a:visited{color:#000;}

li{
  list-style-type: none;
}

/*---------------------------------
pagetopボタン
---------------------------------*/
#pagetop{
  position: fixed;
  right: 1%;
  bottom: 0px;
  background:#000;
  color:#eee;
  padding: 10px 36px;
  border-radius: 5px 5px 0 0;
  font-size: 3.0rem;
  border-top: 5px solid #fabf14;
  border-left: 5px solid #fabf14;
  border-right: 5px solid #fabf14;
}
#pagetop a{
  color:#fff;
  z-index: 1800;
}


body{
  background: #fabf14;
  color:#000;
  font-size: 1.25rem;
  font-family: 'IBM Plex Sans JP', sans-serif;
}
section#sec1,section#sec2,section#sec4,section#sec5,section#sec6{
  padding: 4.0rem;
}
#sec2,#sec5{
  position: relative;
  background: #FFF;
  margin-bottom: 4.0rem;
  color:#000;
}

/*---------------------------------
header
---------------------------------*/

header{
  width: 100%;
  height: 80px;
  background: #fabf14;
}

/*========= 上部固定させるためのCSS ===============*/

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed{
	position: fixed;/*fixedを設定して固定*/
  z-index: 500;/*最前面へ*/
  top:0;/*位置指定*/
  height: 80px;
}

h1{
  float: left;
  margin:0;
  padding:0 1.25rem 0 1.5rem;
  font-size: 3.4rem;
  height:80px;
  line-height: 80px;
  font-family: 'Tilt Warp';
  letter-spacing: 0.05em;
  background:#FFF;
  color:#fabf14;
  display:inline-block;
}
#header h1 a{
  color:#fabf14;
  transition: color 0.5s;
}
#header h1 a:hover{
  color: #666;
}

/*navigation*/
nav{
  width: auto;
  float: right;
  margin:0;
  padding:0;
  height:80px;
  line-height: 4.0rem;
  font-family: 'Antonio', sans-serif;
}
.gnavi{
  display: flex;
  margin:0 0 50px 0;
  list-style: none;
}
.gnavi li a{
  display: block;
  padding:8px 30px;
  text-decoration: none;
}
.gnavi li{
  margin-bottom:20px;
}
#pc-gnav{
  display: block;
}
#sp-gnav{
  display: none;
}

/*===================================
　左から右に背景が伸びる
===================================*/

/*背景の設定*/

.gnavi li a{
  /*背景色の基点とするためrelativeを指定*/
position: relative;
z-index: 100;
}
.gnavi li a::after {
content: '';
  /*絶対配置で線の位置を決める*/
position: absolute;
z-index: -1;
bottom: 0;
left: 0;
  /*背景の形状*/
width: 0;
height:100%;
background:#000;
  /*アニメーションの指定*/
transition:all .5s;
opacity: 0;/*はじめは透過0*/
}
/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
  /*背景の形状*/
width: 100%;/*横幅を伸ばす*/
opacity: 1;/*不透明に*/
}
.gnavi li.current a,
.gnavi li a:hover{
  color: #eee;
}

/*---------------------------------
mainvisual
---------------------------------*/

#mainvisual{
  width: 100%;
  height:600px;
  background:#000;
  background-image: url("../images/mainvis.jpg");
  background-size: cover;
  background-position:center center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size:1.0rem;
}
#mainvisual .catch{
  color:#FFF;
  text-shadow: 0 0 1px #fff;
  text-shadow: 0 0 3px #fff;
  text-shadow: 0 0 5px #fff;
  text-shadow: 0 0 8px #fff;
  font-size: 5.0rem;
  font-family: 'Shippori Mincho B1', serif;
  font-family: 'Train One', cursive;
}

/*====== 縦線が動いてスクロールを促す(SCROLL BAR) =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
  /*描画位置※位置は適宜調整してください*/
  position:absolute;
  right:5%;
  top:625px;
  /*全体の高さ*/
  height:100px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
  /*描画位置*/
  position: absolute;
  left:-30px;
  top: -30px;
  /*テキストの形状*/
  color: #eee;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  font-family: 'Antonio';
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 100px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:50px;
    opacity: 1;
  }
  100%{
    height:0;
    top:100px;
    opacity: 0;
  }
}

/*---------------------------------
h2
---------------------------------*/

#wrap h2.catetit{
  font-family: 'Tilt Warp';
  font-size: 6.0rem;
  margin-bottom: 5.0rem;
  position:relative;
  text-shadow: 3px 3px 0 #dea604;
}
#wrap h2.catetit span.t-st{
  color:#fabf14;
  -webkit-text-stroke: 2px #000;
  text-stroke: 2px #000;
}
#wrap h2.appeartext span:first-child{
  color:#fabf14;
  -webkit-text-stroke: 2px #000;
  text-stroke: 2px #000;
}
#wrap h2.catetit:after{
  content: '';
	display: block;
	position: absolute;
	left: 0; /* 位置調整 */
	transform: translate(0%); /* 位置調整 */
	bottom: -1px; /* 下線の上下位置調整 */
	width: 4.0rem; /* 下線の幅 */
	height: 10px; /* 下線の太さ */
	background-color: #000; /* 下線の色 */
}
#wrap h2.bbl:after{
  content: '';
	display: block;
	position: absolute;
	left: 0; /* 位置調整 */
	transform: translate(0%); /* 位置調整 */
	bottom: -1px; /* 下線の上下位置調整 */
	width: 4.0rem; /* 下線の幅 */
	height: 10px; /* 下線の太さ */
	background-color: #000; /* 下線の色 */
}

/* h2textアニメーション */
.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}



/*---------------------------------
SERVICES
---------------------------------*/

#sec3{
  width: 100%;
  margin: 0 auto;
  padding: 4.0rem 0;
}
article{
  width: 100%;
  height: auto;
}
.servec_area{
  width: 100%;
  padding: 0;
  overflow-x: hidden;
}
.servec_area img{
  width: 100%;
}
.split-right__inner_txt{
  position: relative;
}
.servec_area .sstit_r{
  background: #FFF;
  color:#000;
  padding: 1.0rem;
  font-size: 1.25rem;
  margin-bottom: 3.0rem;
}
.servec_area .sstit_l{
  background: #FFF;
  color:#000;
  padding: 1.0rem;
  font-size: 1.25rem;
  margin-bottom: 3.0rem;
}
.stable{
  line-height: 2.25rem;
}

/*--- web制作 ---*/

.webtit h3.sertit{
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
}
.split-item{
  width: 50%;
}
.webtit{
  margin-bottom: 5.0rem;
}
.split-left{
  float:left;
}
.split-right{
  float:right;
}
.split-right__inner_txt{
  padding: 10%;
}
.split-left__inner_txt{
  padding: 10%;
}

/* 左からフェードイン */
.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-150px);
  }

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

/* 右からフェードイン */
.fadeRight{
  animation-name:fadeRightAnime;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(150px);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}
 
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}
  


/*---------------------------------
CONTACT
---------------------------------*/

.contct_btn{
  width: 100%;
}
.c_btn{
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: block;
  text-align: center;
  background: transparent;
  border-radius: 10px;
  border: solid 1px #000;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s ease;
  margin: 3.6rem auto 1.5rem;
  width: 60%;
  font-size: 2.6rem;
  font-family: 'Antonio', sans-serif;
}
.c_btn:hover{
	border-color:transparent;	
}
.c_btn span{
  position: relative;
  z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  /*テキストの形状*/
  display: block;
  padding: 1.6rem 3.0rem;
  background:#fff;
  border-radius: 10px;
  color:#000;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
}
/*影の設定*/
.pushdown:before {
  content:"";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top:4px;
  left:0;
  /*影の形状*/
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #000;
}
/*hoverの際にY軸に4pxずらす*/
.pushdown:hover span {
  background-color: #000;
  color: #fff;
  transform: translateY(4px);
}
.atte{
  text-align: center;
  font-size: 1.0rem;
}


/*---------------------------------
OUTLINE
---------------------------------*/

table.lucktable{
  width: 100%;
}
table.lucktable tr th,table.lucktable tr td{
  border: 1px solid #444;
  padding: 2.0rem;
  box-sizing: border-box;
}
table.lucktable tr th{
  border:1px solid #444;
  box-sizing: border-box;
  text-align: center;
}

/*---------------------------------
FOOTER
---------------------------------*/
footer{
  text-align: center;
}
h6.f_logo{
  font-size: 12.0rem;
  font-family: 'Tilt Warp';
  margin-bottom: 5.0rem;
}
p.f_privacy{
  border-top: 1px solid #dea604;
  font-size: 1.0rem;
  line-height: 5.0rem;
  margin: 0;
  margin: 0 auto;
}
p.f_copy{
  background: #FFF;
  color:#000;
  margin: 0;
  height: 50px;
  line-height: 50px;
  font-family: 'Antonio', sans-serif;
}

/*---------------------------------
privacy policyページ 
---------------------------------*/

#privacy .privacy-area h3{
  background: #FFF;
  color: #fabf14;
  padding: 1.0rem;
  margin-bottom: 2.0rem;
}
#privacy .privacy-area p{
  margin-bottom: 2.0rem;
  width: 96%;
  margin: 0 auto 2.0rem;
}
.privacy-area ul{
  width:96%;
  margin: 0 auto 2.0rem;
}

/*---------------------------------
404 Not Found
---------------------------------*/

.notfound-area{
  height: 100%;
  text-align: center;
}
.notfound-area h2{
  font-size: 6.0rem;
  margin: 3.2rem auto;
  font-family: 'Antonio', sans-serif;
  letter-spacing: -0.025em;
}




/*/////////////////////////////////
◆1280px以下のブラウザ
/////////////////////////////////*/

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

  h1{
    font-size: 3.0rem;
  }
  /* SERVICES */

  .servec_area .sstit_r{
    padding: 0.75rem;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
  }
  .servec_area .sstit_l{
    padding: 0.75rem;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
  }
  .stable{
    line-height: 1.6rem;
    font-size: 0.8em;
  }

  /* web制作 */
  .webtit h3.sertit{
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }
  .webtit{
    margin-bottom: 5.0rem;
  }
  .split-right__inner_txt{
    padding: 5%;
  }
  .split-left__inner_txt{
    padding: 5%;
  }
  h6.f_logo{
    font-size: 9.0rem;
    font-family: 'Tilt Warp';
    margin-bottom: 5.0rem;
  }
}

/*/////////////////////////////////
◆980x以下のブラウザ
/////////////////////////////////*/

@media screen and (max-width: 980px) {
  
  /* header */
  h1{
    font-size: 2.0rem;
  }
  .gnavi li a{
    display: block;
    padding:10px 20px;
    text-decoration: none;
  }
  
	/* SERVICES */
  .servec_area .sstit_r{
    padding: 0.75rem;
    font-size: 1.0rem;
    margin-bottom: 1.5rem;
  }
  .servec_area .sstit_l{
    padding: 0.75rem;
    font-size: 1.0rem;
    margin-bottom: 1.5rem;
  }
  .stable{
    line-height: 1.4rem;
    font-size: 0.75em;
  }

  /* web制作 */
  .webtit h3.sertit{
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }
  .webtit{
    margin-bottom: 5.0rem;
  }
  .split-right__inner_txt{
    padding: 5%;
  }
  .split-left__inner_txt{
    padding: 5%;
  }

   /* outline */
   table.lucktable tr th,table.lucktable tr td{
    padding: 1.0rem;
  }
  table.lucktable tr th{
    width: 20%;
  }

  /* footer */
  h6.f_logo{
    font-size: 7.0rem;
    font-family: 'Tilt Warp';
    margin-bottom: 5.0rem;
  }
}

/*/////////////////////////////////
◆768px以下のブラウザ
/////////////////////////////////*/

@media screen and (max-width: 768px) {
  
  /* header */
  h1{
    font-size: 1.15rem;
  }
  .gnavi li a{
    display: block;
    padding:10px 16px;
    text-decoration: none;
  }

  /* mainvisual */
  #mainvisual .catch{
    color:#FFF;
    text-shadow: 0 0 1px #fff;
    text-shadow: 0 0 3px #fff;
    text-shadow: 0 0 5px #fff;
    text-shadow: 0 0 8px #fff;
    font-size: 3.6rem;
    font-family: 'Shippori Mincho B1', serif;
    font-family: 'Train One', cursive;
  }

  /* SERVICES */
  .servec_area .sstit_r{
    padding: 0.5rem;
    margin-bottom: 1.0rem;
    font-size: 1.25rem;
  }
  .servec_area .sstit_l{
    padding: 0.5rem;
    font-size: 1.25rem;
    margin-bottom: 1.0rem;
  }
  .stable{
    line-height: 1.75rem;
    font-size: 1.2rem;
  }
  .split-item{
    width: 100%;
  }
  .split-left{
    float:none;
  }
  .split-right{
    float:none;
  }
  .split-right__inner_txt{
    padding: 10%;
  }
  .split-left__inner_txt{
    padding: 10%;
  }
  .split-right__inner{
    width: 100%;
  }
  .split-left__inner{
    width: 100%;
  }

  /* web制作 */
  .webtit h3.sertit{
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }
  .webtit{
    margin-bottom: 5.0rem;
    width: 80%;
  }
  .split-right__inner_txt{
    padding: 5%;
  }
  .split-left__inner_txt{
    padding: 5%;
  }

  /* footer */
  h6.f_logo{
    font-size: 6.0rem;
    font-family: 'Tilt Warp';
    margin-bottom: 2.0rem;
  }
}

/*/////////////////////////////////
◆640px以下のブラウザ
/////////////////////////////////*/

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

  /* pagetop */
  #pagetop{
    position: fixed;
    right: 2.0%;
    bottom: 0px;
    background:#000;
    color:#eee;
    padding: 15px 25px;
    border-radius: 5px 5px 0 0;
    font-size: 1.5rem;
    border-top: 1px solid #fabf14;
    border-left: 1px solid #fabf14;
    border-right: 1px solid #fabf14;
    z-index: 300;
  }

  /* h2 */
  #wrap h2.catetit{
    font-family: 'Tilt Warp';
    font-size: 4.0rem;
    margin-bottom: 5.0rem;
    position:relative;
    text-shadow: 3px 3px 0 #dea604;
  }


  /*========= SP用ナビのCSS ===============*/

  #sp-gnav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
    z-index: -100;
    display:none;/*はじめは透過0*/
    /*SPナビの位置と形状*/
    top:0;
    left:0;
    width:100%;
    height: 100vh;/*SPナビの高さ*/
    background:#fabf14;
    /*動き*/
    transition: all 0.3s;
  }

  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #sp-gnav.panelactive{
    display: block;
    z-index:1000;
  }

  /*SSPナビ*/
  #sp-gnav ul {
    display: none;
    /*SPナビ天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:46%;
    left:50%;
    width: 60%;
    margin: 0 auto;
    transform: translate(-50%,-50%);
  }

  #sp-gnav.panelactive ul {
    display: block;
  }

  /*SPナビリストのレイアウト設定*/
  #sp-gnav li{
    list-style: none;
    text-align: center; 
    margin-bottom: 0;
  }
  #sp-gnav li a{
    color: #000;
    text-decoration: none;
    padding:3px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    border-bottom: 1px solid #000;
    width:100%;
    display: block;
    margin-bottom: 0;
  }


  /* SP用ハンバーガーメニュー */

  .openbtn{
    /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: absolute;
    right: 5px;
    top: 5px;
    background:#FFF;
    cursor: pointer;
    width: 70px;
    height:70px;
    border-radius: 5px;
    z-index: 2000;
  }

  /*ボタン内側*/
  .openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 19px;
    height: 3px;
    border-radius: 5px;
    background: #000;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top:18px;	
  }
  .openbtn span:nth-of-type(2) {
    top:26px;
  }
  .openbtn span:nth-of-type(3) {
    top:34px;
  }
  .openbtn span:nth-of-type(3)::after {
    content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top:8px;
    left:-2px;
    color: #000;
    font-size: 0.74rem;
    text-transform: uppercase;
  }

  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
  .openbtn.active span:nth-of-type(1) {
      top: 20px;
      left: 17px;
      transform: translateY(6px) rotate(-45deg);
      width: 50%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3){
      top: 28px;
      left: 17px;
      transform: translateY(-3px) rotate(45deg);
      width: 50%;
  }
  .openbtn.active span:nth-of-type(3)::after {
    content:"Close";/*3つ目の要素のafterにClose表示を指定*/
      transform: translateY(0) rotate(-45deg);
    top:12px;
    left:17px;
    font-size: 0.74rem;
  }

  /*PC用ナビの非表示*/
  #pc-gnav{
    display: none;
  }
  
  /*mainvisualの文字サイズ変更*/
  #mainvisual .catch{
    font-size: 3.0rem;
  }

  /*footer*/
  h6.f_logo{
    font-size: 4.4rem;
  }

  /*スクロールダウン全体の場所*/
  .scrolldown1{
    /*描画位置※位置は適宜調整してください*/
    position:absolute;
    right:10%;
    top:625px;
    /*全体の高さ*/
    height:100px;
  }

}

/*/////////////////////////////////
◆480px以下のブラウザ
/////////////////////////////////*/

@media screen and (max-width: 480px) {
  section#sec1,section#sec2,section#sec4,section#sec5,section#sec6{
    padding: 1.25rem;
  }
  section#sec1,section#sec2,section#sec4,section#sec5{
    padding: 3.0rem 1.25rem;
  }
  #sec3{
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .container{
    width: 100%;
    margin: 0 auto;
    font-size: 1.0rem;
  }
  #sec3 .container{
    width: 82%;
    margin: 0 auto;
    padding: 0;
  }
  .openbtn{
    border: 1px solid #fabf14;
  }
  h1{
    float: left;
    margin:0;
    padding:0 1.25rem 0 1.5rem;
    font-size: 3.4rem;
    height:80px;
    line-height: 80px;
    font-family: 'Tilt Warp';
    letter-spacing: 0.05em;
    background:#FFF;
    color:#fabf14;
    display:inline-block;
    width: 100%;
    font-size: 2.0rem;
  }
  #mainvisual .catch{
    font-size: 2.0rem;
  }
  #wrap h2.catetit{
    font-family: 'Tilt Warp';
    font-size: 3.0rem;
    margin-bottom: 5.0rem;
    position:relative;
    text-shadow: 3px 3px 0 #dea604;
    line-height: 3.2rem;
  }
  #wrap h2.catetit span.t-st{
    color:#fabf14;
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000;
  }
  #wrap h2.appeartext span:first-child{
    color:#fabf14;
    -webkit-text-stroke: 2px #000;
    text-stroke: 2px #000;
  }
  #wrap h2.catetit:after{
    content: '';
    display: block;
    position: absolute;
    left: 0; /* 位置調整 */
    transform: translate(0%); /* 位置調整 */
    bottom: -6px; /* 下線の上下位置調整 */
    width: 1.6rem; /* 下線の幅 */
    height: 7px; /* 下線の太さ */
    background-color: #000; /* 下線の色 */
  }
  #wrap h2.bbl:after{
    content: '';
    display: block;
    position: absolute;
    left: 0; /* 位置調整 */
    transform: translate(0%); /* 位置調整 */
    bottom: -6px; /* 下線の上下位置調整 */
    width: 1.6rem; /* 下線の幅 */
    height: 7px; /* 下線の太さ */
    background-color: #FFF; /* 下線の色 */
  }
  h6.f_logo{
    font-size: 3.2rem;
  }
  /*スクロールダウン全体の場所*/
  .scrolldown1{
    /*描画位置※位置は適宜調整してください*/
    position:absolute;
    right:8%;
    top:625px;
    /*全体の高さ*/
    height:100px;
  }

  /*Scrollテキストの描写*/
  .scrolldown1 span{
    /*描画位置*/
    position: absolute;
    left:-20px;
    top: -20px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    font-family: 'Antonio';
  }

  /* 線の描写 */
  .scrolldown1::after{
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    right: 2.5px;
    /*線の形状*/
    width: 1px;
    height: 100px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity:0;
  }
  .servec_area .sstit_r{
    padding: 0.5rem;
    margin-bottom: 1.0rem;
    font-size: 1.0rem;
  }
  .servec_area .sstit_l{
    padding: 0.5rem;
    font-size: 1.0rem;
    margin-bottom: 1.0rem;
  }
  .stable{
    line-height: 1.75rem;
    font-size: 1.0rem;
  }
  .c_btn{
    position: relative;
    /*ボタンの形状*/
    text-decoration: none;
    display: block;
    text-align: center;
    background: transparent;
    border-radius: 10px;
    border: solid 1px #000;
    outline: none;
    /*アニメーションの指定*/
    transition: all 0.2s ease;
    margin: 3.6rem auto 1.5rem;
    width: 100%;
    font-size: 2.0rem;
    font-family: 'Antonio', sans-serif;
  }
  #privacy .privacy-area h3{
    background: #000;
    color: #fabf14;
    padding: 1.0rem;
    margin-bottom: 2.0rem;
    font-size: 1.15rem;
  }
  table.lucktable tr th,table.lucktable tr td{
    display:block;
  }
  table.lucktable tr th{
    width: 100%;
    display:block;
    background:#fabf14;
    border:1px solid #fabf14;
    color:#000;
  }
  #privacy table.lucktable tr th{
    width: 100%;
    display:block;
    background:#000;
    border:1px solid #000;
    color:#fabf14;
  }
  table.lucktable img.ceo{
    width: 60%;
  }
}