@charset "utf-8";

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.6;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*http://meyerweb.com/eric/tools/css/reset/ */

*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}

.clearfix:after {
 visibility: hidden;
 display: block;
 font-size: 0;
 content: " ";
 clear: both;
 height: 0;
}

a{
  outline: none;
  text-decoration: none;
  color: #000;
  transition:.2s;
}

html{
  font-size: 62.5%;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: 'Martel Sans','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','ヒラギノ角ゴ Pro W6','游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  color: #000;
}

#wrapper{
  min-width: 100%;
  overflow: hidden;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.inner{
  width: 1000px;
  margin: 0 auto;
}

button{
  outline: none;
}

.br{
  display: block;
}

.br_onoff {
      display: none;
    }
/*============
nav
============*/
.link-current {
  border-bottom: solid 2px #fff;
}

.menu-contact{
    display: none;
}

nav{
  background: #fff;
  width: 100%;
  height: 64px;
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99;
}

nav.fixed{
  position: fixed;
  top: 0;
}

nav .inner{
  display: flex;
  padding: 8px 0 0 0;
  justify-content: center;
}
nav .inner h1{
  margin-left: 20px;
}
nav .inner ul{
  padding-top: 6px;
  margin-left: 400px;
  display: flex;
}
nav .inner ul li{
  letter-spacing: 0.3rem;
  font-weight: 700;
  width: 100%;
  margin-right: 30px;
  justify-content: normal;
}
nav .inner ul li a{
  display: block;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
nav .inner ul li a::after{
  position: absolute;
  bottom: -2px;
  left:0;
  content: '';
  height: 2px;
  border-bottom: solid 2px #00d5af;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}
nav .inner ul li a:hover::after,
nav .inner ul li a.active::after{
  width: 100%;
}
nav .inner ul li a{
  display: block;
  text-align: center;
}
nav .inner ul li a:first-child{
  color: #00d5af;
  font-size: 1.5rem;
}
nav .inner ul li a:last-child{
  color: #00d5af;
  font-size: 1.6rem;
  margin-top: 8px;
}

nav.open .inner ul,
nav.open .inner h1{
    opacity: 1;
 }

/*============
header
============*/
header {
    position: relative;
}

header .bg-slider {
    position: absolute;
    width: 1342px;
    height: 814px;
    top: 146px;
    right: 0;
}

header .header-inner{
    width: 1000px;
  position: relative;
  height: 960px;
  margin: 0 auto;
}
header .header-inner .mainVisualText{
  position: absolute;
  color: #FFF;
  left: 20px;
  bottom: 50px;
    animation-name: fadeUp;
    animation-duration: .8s;
    animation-delay: .6s;
    animation-fill-mode: forwards;
}


@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

/*============
コンテンツ総合
============*/
.innerTitle{
	margin: 0;
	text-align: center;
}
.innerTitle h3{
	font-weight: 700;
	font-size: 6rem;
	letter-spacing: 0.5rem;
}

.innerTitle p{
	font-weight: bold;
	font-size: 1.6rem;
	letter-spacing: 0.4rem;
}

/*============
concept
============*/

#concept .inner{
	padding: 100px 0;
	text-align: center;
}

#concept .inner .innerTxt{
	margin: 60px 0 0 0;
	font-size: 16px;
	text-align: center;
	font-weight: 300;
	letter-spacing: 0.4rem;
	line-height: 2;
}

#concept .inner .innerTxt span{
  background: #35d4af;
	margin: 0 5px 0 0;
    color: #FFF;
	padding: 3px 4px 0 7px;
	
}

/*============
service
============*/

#service{
	padding: 100px 0 50px 0;
	/*height: 796px;*/
	position: relative;
}

#service .sevice-list{
    margin-top: 65px;
}
#service .game-box{
    height: 308px;
    border: solid 1px;
    border-color: #e7e7e7;
    vertical-align: middle;
    margin-bottom: 30px;
}

#service .box-inner{
    padding: 20px;
    letter-spacing: 0.4rem;
}


#service .box-inner .text{
    width: 575px;
}

#service .sevice-text{
    float: right;
}

#service .sevice-text h4{
    font-size: 29px;
    font-weight: bold;
    padding: 10px 0 34px 0;
}

#service .sevice-text .em{
    font-size: 19px;
}

#service .sevice-text .text{
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 38px;
}

.btn {
    width: 363px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
	color: #fff;
    margin: auto;
}

.btn:hover{
	background: #33d5b6;
}

.service-wrap {
  margin: 1.2em 0;
  padding: 0;
}
.details__content{
    margin-top: 25px;
}
.details__summary {
    position: relative;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin: auto;
    
}

.details__summary:hover {
    background: #33d5b6;
}

.details__summary::-webkit-details-marker {
    display: none;
}
.details__summary::before {
    display: block;
    content: '';
    width: 13px;
    height: 13px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 0;
    margin-top: -4px;
}
.details[open] .details__summary::before {
    transform: rotate(135deg);
    margin-top: -12px;
}

/*============
company
============*/
#company .inner{
	padding: 100px 0;
}

/*タブ切り替え*/
#company .inner .companyModule{
	text-align: center;
	padding: 70px 0 0 0;
	position: relative;
}

#company .inner .companyModule li{
	font-size: 3rem;
	letter-spacing: 0.5rem;
	font-weight: 700;
    color: #fff;
	background-color: #000;
	width: 50%;
	padding: 25px 0 18px 0;
	cursor: pointer;
}

#company .inner .companyModule .tabTitle {
  overflow: hidden;
}

#company .inner .companyModule .active{
	color: #FFF;
	background-color: #33d5b6;
	
}
#company .inner .companyModule .flexbox {
  	display: flex;
}

#company .inner .companyModule .companyPanel{
    display: none;
}

#company .inner .companyModule .companyPanel.show{
    display: block;
	animation: 0.5s fadeIn;
}

@keyframes fadeIn { 
  0% {opacity: 0}
  100% {opacity: 1}
}

#company .inner .companyModule .companyTxt02{
	margin-left: 2px;
}

#company .inner .companyModule .companyTxt01:hover,
#company .inner .companyModule .companyTxt02:hover{
	background-color: #33d5b6;
    color: #fff;
}

/*タブ共通*/
#company .inner .companyModule .company_tabTitle{
	text-align: left;
	margin: 40px 0 0 20px;
}

#company .inner .companyModule .company_tabTitle p{
	padding-bottom: 7px;
	font-weight: 700;
    font-size: 1.8rem;
	letter-spacing: 0.3rem;
}

#company .inner .companyModule .company_tabTitle h4{
	font-weight: bold;
    font-size: 3.5rem;
	letter-spacing: 0.5rem;
}

#company .inner .companyModule .company_tabTitle .border{
	width: 30px; /*下線の幅*/
    border-bottom: 2px solid #000;
	margin: 15px 0;
}

#company .inner .companyModule .leftspace{
	padding-left: 20px;
}

#company .inner .companyModule .companyContents01,
#company .inner .companyModule .companyContents02{
    font-size: 1.5rem;
}

/*タブ：会社概要*/
#company .inner .companyModule .companyContents01 table{
	width: 95%;
    
	table-layout: fixed;
}

#company .inner .companyModule .companyContents01{
	float: left;
	text-align: left;
	width: 50%;
	letter-spacing: 0.2rem;
}
#company .inner .companyContents01 span{
    margin-left: 10px;
    font-size: 1.5rem;
}

#company .inner .companyModule tr.borderLine{
	border-bottom: 1px solid #e7e7e7;
}

#company .inner .companyModule .companyContents01 th{
	font-weight: bold;
	width: 20%;
}

#company .inner .companyModule .companyContents01 td,
#company .inner .companyModule .companyContents02 td{
	padding: 7px 0;
	line-height: 1.8;
}

.btn-gray{
    margin: 0 auto;
    padding: 15px 0;
    display: block;
    font-size: 1.8rem;
	text-align: center;
    background: #e7e7e7;
	color: #000;
    width: 363px;
}

.btn{
    font-size: 1.8rem;
}

.btn a{
	margin-top: 5px;
	display: block;
	text-align: center;
	color: #fff;
	background: #000;
	padding: 10px 0;
}

.btn a:hover{
	background: #33d5b6;
}

#company .inner .companyModule .companyPanel iframe{
	padding-top: 15px;
}

/*タブ：沿革*/
#company .inner .companyModule .companyContents02{
	text-align: left;
	letter-spacing: 0.2rem;
}

#company .inner .companyModule .companyContents02 table{
	width: 95%;
	table-layout: fixed;
}

#company .inner .companyModule .companyContents02 th{
	font-weight: bold;
	width: 20%;
}

.contact {
    margin-top: 13px;
    height: 195px;
    background: #f1f3f4;
    text-align: center;
	letter-spacing: 0.5rem;
}

.contact h3{
    font-weight: 700;
	font-size: 3rem;
    padding-top: 23px;
}

.contact .mail{
    font-weight: 700;
	font-size: 2rem;
    padding: 15px 0;
    
}

.contact .mail a{
    text-decoration: none;
}

.contact p{
	font-size: 1.6rem;
    padding-bottom: 25px;
    line-height: 1.8
}

.contact p a{
	text-decoration: underline;
}

.contact p a:hover{
	color: #00d5af;
}


/*============
footer
============*/

footer{
	position: relative;
  	background: #000;
  	color: #FFF;
	height: 150px;
	letter-spacing: 0.2rem;
}

footer .inner img{
	float: left;
	margin-top: 30px;
}


footer .inner ul{
	padding: 0 0 30px 0;
	float: right;
}

footer .inner ul li{
    margin-left: 10px;
	margin-top: 55px;
	float: left;
}

footer .inner ul .borderLine{
	display: inline;
	list-style-type: none;
	margin-right: 6px;
	padding-right: 15px;
	border-right: 2px solid #FFF;
}

footer .inner ul li a{
    color: #FFF;
    font-size: 1.4rem;
	text-decoration: underline;
}

footer .inner ul li a:hover{
	color: #00d5af;
}

footer .inner small{
	display: block;
	clear: both;
	margin-left: 57.8%;
	bottom: 36px;
	position: relative;
    font-size: 1.1rem;
}


/*============
page top
============*/
#page_top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  right: 10px;
  bottom: 10px;
  background: #000;
  cursor: pointer;
}

#page_top:hover {
  background: #00d5af;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#page_top a span {
  top: 0;
  left: 50%;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  box-sizing: border-box;
}
#page_top a span::after {
  position: absolute;
  top: 63%;
  left: 48%;
  content: '';
  width: 20px;
  height: 20px;
  margin: -12px 0 0 -8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  box-sizing: border-box;
}


