@charset 'UTF-8';

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    margin: 0;
    color: #353535;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    line-height: 2;
    font-size: 14px;
    position: relative;
    overflow-y: scroll;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select, button {
    vertical-align:middle;
    outline: none;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}
.sp {
  display: block;
}
.pc {
  display: none;
}
@media screen and (min-width: 560px){
  body {
    line-height: 2;
    font-size: 16px;
}
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}


/*******************************************************************
ヘッダー
*******************************************************************/
header{
  position: absolute;
  width: 100%;
  height: 100vh;
}
header h1 {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  z-index: 20;
  font-style: italic;
}
header h1 a {
  color: #fff;
}
header h1 img {
  width: 60vw;
  max-width: 280px;
  vertical-align: text-bottom;
}
header h1 span {
  display: block;
  font-size: 4.6vw;
  line-height: 1.8em;
}
@media screen and (min-width: 960px){
  header h1 span {
    font-size: 30px
  }
}


/*******************************************************************
メインビジュアル
*******************************************************************/
#mainVisual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


/*******************************************************************
グローバルメニュー
*******************************************************************/
.navbar-toggle{
  display: block;
  position: fixed;
  width: 60px;
  right: 25px;
  top: 25px;
  z-index: 40;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.navbar-toggle span {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  display: block;
  margin: 10px auto 0;
  color: #f26505;
}
.navbar-toggle .icon-bar{
  background: #f26505;
}
.navbar-toggle .icon-bar {
    display: block;
    height: 5px;
    border-radius: 2px;
    position: relative;
    width: 100%;
}
.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 12px;
}
.menu1,
.menu2,
.menu3{
  transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out; /* Opera */
  -moz-transition: all 0.5s ease-out; /* Firefox */
  -webkit-transition: all 0.5s ease-out; /* GoogleChrome, Safari */
  -ms-transition: all 0.5s ease-out; /* IE */
  box-sizing: border-box;
}
.menuclick1   {
  top:17px;
  -o-transform: rotate(405deg);
  -moz-transform: rotate(405deg);
  -webkit-transform: rotate(405deg);
  -ms-transform: rotate(405deg);
  transform: rotate(405deg);
  margin-left: 0;
}
.menuclick2   {
  opacity: 0;
}
.menuclick3   {
  top:-17px;
  -o-transform: rotate(-405deg);
  -moz-transform: rotate(-405deg);
  -webkit-transform: rotate(-405deg);
  -ms-transform: rotate(-405deg);
  transform: rotate(-405deg);
  margin-left: 0;
}
nav{
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
}
nav ul {
  display: none;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  padding: 3%;
  box-sizing: border-box;
  background: rgba(0,0,0,0.8);
  z-index: 30;
}
nav ul li {
  height: 10vh;
  padding: 2.5vh 0;
  box-sizing: border-box;
  text-align: center;
}
nav ul li a {
  color: #fff;
  font-weight: bold;
  font-size: 2em;
  line-height: 1.6em;
}
.entry-btn a {
  display: block;
  width: 300px;
  margin: 0 auto;
  text-align: center;
  background-color: #f26505;
  border-radius: 25px;
}


/*******************************************************************
メッセージ
*******************************************************************/
#message {
  width: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
}
#message::before {
  content: "To create a future car society ...I need your power";
  position: absolute;
  top: -50px;
  right: 0;
  width: 100%;
  height: 100%;
  font-size: 24vw;
  font-weight: bold;
  color: #ccc;
  line-height: 1em;
  opacity: 0.2;
}
.message-inner {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  overflow: hidden;
}
.message-ttl {
  position: relative;
  display: block;
  font-size: 2em;
  margin-bottom: 60px;
  font-weight: bold;
}
.message-ttl:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #f26505;
}
.message-inner h2 {
  font-size: 5.8vw;
  font-weight: 900;
  line-height: 2.2em;
  margin: 0 0 30px 0;
  color: #f26505;
  color: transparent;
  background: -webkit-linear-gradient(90deg, #f26505 20%, #ffd861 120%);
  background: linear-gradient(90deg, #f26505 20%, #ffd861 120%);
  -webkit-background-clip: text;
  background-clip: text;
}
.message-inner h2 span {
  display: block;
  margin-left: 2.5%;
}
.message-txt {
  line-height: 2em;
}
.message-txt h3 {
  font-size: 1.4em;
  margin: 0 0 20px;
}
.message-txt p{
  margin: 0 0 10px;
}
@media screen and (min-width: 560px){
  #message::before {
    font-size: 20vw;
  }
  .message-inner {
    padding: 120px 0;
  }
  .message-ttl {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 960px){
  #message::before {
    font-size: 13.45vw;
  }
  .message-inner h2 {
    /*float: left;*/
    font-size: 2.6vw;
    margin: 0 100px 0 0;
  }
  .message-txt {
    /*display: flow-root;*/
    margin: 70px auto 0;
  }
}


/*******************************************************************
サポート
*******************************************************************/
#support {
  position: relative;
  width: 100%;
  margin: auto;
  background: url(../img/message-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}
.support-inner {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  overflow: hidden;
}
.support-ttl {
  position: relative;
  display: block;
  font-size: 2em;
  margin-bottom: 60px;
  color: #fff;
  font-weight: bold;
}
.support-ttl:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #f26505;
}
.support-txt li {
  color: #fff;
  line-height: 2em;
  margin-bottom: 60px;
  list-style-type: none;
}
.support-txt h3 {
  font-size: 2em;
  font-weight: bold;
  margin: 0 0 15px 0;
}
.support-txt h3 span {
  font-size: 1.6em;
  color: #f26505;
/*  color: transparent;
  background: -webkit-linear-gradient(135deg, #f26505 20%, #ffd861 120%);
  background: linear-gradient(135deg, #f26505 20%, #ffd861 120%);
  -webkit-background-clip: text;
  background-clip: text;*/
  vertical-align: text-top;
}
@media screen and (min-width: 560px){
  .support-inner {
    padding: 120px 0;
  }
}
@media screen and (min-width: 960px){
  .support-txt li:nth-child(1) {
    width: 60%;
  }
  .support-txt li:nth-child(2) {
    width: 60%;
    margin-left: 20%;
  }
  .support-txt li:nth-child(3) {
    margin-left: 40%;
  }
}


/*******************************************************************
スタッフ
*******************************************************************/
#staff {
  position: relative;
  width: 100%;
  margin: auto;
  background: url(../img/staff-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#staff::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.8);
}
.staff-inner {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  overflow: hidden;
}
.staff-ttl {
  position: relative;
  display: block;
  font-size: 2em;
  margin-bottom: 60px;
  color: #000;
  font-weight: bold;
}
.staff-ttl:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #f26505;
}
.staff-inner ul li {
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  list-style-type: none;
}
.staff-img {
  position: relative;
  overflow: hidden;
  transition: 0.6s;
}
.staff-img a::before {
  content: "";
  position: absolute;
  background-image: url(../img/play-btn.png);
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit- transform: translate(-50%,-50%);
  z-index: 1;
  transition: 0.6s;
}
.staff-img img {
  max-width: 100%;
  vertical-align: bottom;
  transition: 0.6s;
}
.staff-img:hover img {
  transform: scale(1.1);
}
.staff-img:hover a:before {
  opacity: .7;
}
.staff-txt {
  background-color: #fff;
  padding: 8% 4% 4%;
  min-height: 100px;
}
.staff-txt h4 {
  color: #f26505;
}
/*.staff-txt p {
  margin: 0 0 20px 0;
}*/
.staff-txt a {
  display: block;
  color: #f26505;
  text-align: right;
  font-size: 0.8em;
}

@media screen and (min-width: 960px){
  .staff-inner ul li {
    width: 33.333%;
    float: left;
  }
}


/*******************************************************************
募集要項
*******************************************************************/
#information {
  width: 100%;
  margin: auto;
}
.information-inner {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  overflow: hidden;
}
.information-ttl {
  position: relative;
  display: block;
  font-size: 2em;
  margin-bottom: 60px;
  color: #000;
  font-weight: bold;
}
.information-ttl:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #f26505;
}
.information-tab {
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}
.information-tab li {
  display: inline-block;
  padding: 0 10%;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  color: #ccc;
  line-height: 2em;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 3px;
  list-style-type: none;
  cursor: pointer;
  transition: .3s;
}
.information-tab li:hover {
  color: #fff;
  background-color: #f26505;
  border: 2px solid #f26505;
}
.information-tab li.select {
  color: #fff;
  background-color: #f26505;
  border: 2px solid #f26505;
}
.hide {
  display: none;
}
.information-tab-content li {
  list-style-type: none;
}
.information-tab-content-list table {
  width: 100%;
}
.information-tab-content-list tr {
  display: flow-root;
  padding: 15px 0;
  border-bottom: 1px solid #000;
}
.information-tab-content-list tr th,
.information-tab-content-list tr td {
  width: 100%;
  float: left;
  line-height: 2em;
}
@media screen and (min-width: 560px){
  .information-inner {
    padding: 120px 0;
  }
}
@media screen and (min-width: 960px){
  .information-tab-content-list tr th {
    width: 20%;
  }
  .information-tab-content-list tr td {
    width: 80%;
  }
}

/*******************************************************************
アクセス
*******************************************************************/
#access {
  position: relative;
  width: 100%;
  margin: auto;
  background: url(../img/access-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}
.access-inner {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  overflow: hidden;
}
.access-ttl {
  position: relative;
  display: block;
  font-size: 2em;
  margin-bottom: 60px;
  color: #fff;
  font-weight: bold;
}
.access-ttl:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #f26505;
}
.access-list ul {
  overflow: hidden;
}
.access-list ul li {
  margin: 0 0 30px 0;
  color: #fff;
  padding: 1%;
}
.shop-info h4 {
  font-size: 1.2em;
  margin: 0 0 10px 0;
}
.shop-info a {
  color: #fff;
}
.shop-info a.googleMap {
  display: inline-block;
  border: 1px solid #f26505;
  border-radius: 3px;
  margin: 5px 0 0;
  padding: 0 6% 1%;
  box-sizing: border-box;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}

@media screen and (min-width: 560px){
  .access-inner {
    padding: 120px 0;
  }
  .access-list li {
    width: 50%;
    min-height: 200px;
    float: left;
    list-style-type: none;
    padding: 1.5%;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 960px){
  .access-list li {
    width: 33.333%;
  }
  .shop-name {
    font-size: 1em;
  }
}

/*******************************************************************
エントリーフォーム
*******************************************************************/
#entry {
  width: 100%;
  margin: auto;
}
.entry-inner {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  overflow: hidden;
}
.entry-ttl {
  position: relative;
  display: block;
  font-size: 2em;
  margin-bottom: 60px;
  color: #000;
  font-weight: bold;
}
.entry-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #f26505;
}
.entry-cont p {
  color: #000;
  margin-bottom: 30px;
}
.form-row {
  margin: 10px auto;
}
.form-row label {
  color: #000;
}
.form-row label span {
  color: #ff341f;
}
.form-col {
  width: 100%;
}
.form-col input[type="text"],
.form-col textarea {
  display: block;
  width: 100%;
  padding: 2%;
  border: 2px solid #d8d8d8;
  border-radius: 3px;
  box-sizing: border-box;
}
.form-col input[type="text"]:focus,
.form-col textarea:focus {
  border: 2px solid #f26505;
}
.submit-btn {
  margin-top: 50px;
}
.submit-btn input[type="submit"] {
  width: 220px;
  color: #fff;
  font-weight: bold;
  background: #f26505;
  border:none;
  border-radius: 3px;
  padding: 1% 6%;
  cursor: pointer;
  -webkit-appearance: none;
  transition: .2s;
} 
@media screen and (min-width: 960px){
  .entry-inner {
    padding: 120px 0;
  }
  .entry-inner form {
    max-width: 960px;
  }
  .form-row {
    display: flex;
    margin: 5px auto 20px;
  }
  .form-row label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .form-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}


/*******************************************************************
フッター
*******************************************************************/
footer {
  width: 100%;
  margin: auto;
  background-color: #000;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 0 5px;
  text-align: center;
}
.footer-inner a {
  color: #fff;
}
.footer-inner img {
  max-width: 100%;
  vertical-align: bottom;
}
.footer-inner span {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
.copyright {
  color: #fff;
  font-size: 12px;
  margin-top: 60px;
  padding-top: 5px;
  border-top: 1px solid #ccc;
}

