@charset "UTF-8";
@import url('https://fonts.cdnfonts.com/css/futura-lt');

/* ======================================================

   common-Setting

========================================================= */
body {
  color: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
table,
pre,
address,
ul,
ol,
dl {
  font-size: 160%;
  font-weight: 300;
  text-align: left;
  line-height: 2;
}
h1,
h2,
h3,
h4,
h5,
h6,
li {
  line-height: 1.4;
}
li {
  list-style: none;
}
dt,
dd {
  line-height: 1.6;
}
th,
td {
  line-height: 1.6;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: #FCEE21;
  text-decoration: none;
}
a:hover {
  color: #FCEE21;
  text-decoration: underline;
}
#wrapper {
  overflow-x: hidden;
  position: relative;
}


/* ======================================================

   header

========================================================= */
#outer_header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 1000;
  mix-blend-mode: difference;
  filter: invert(1);
}
#header {
  width: 90%;
  margin: 0 auto;
}
#header h1 {
  width: 160px;
  margin-top: 15px;
}
#header .g_navi {
  display: none;
  margin-top: 13px;
}

/* hamburger menu */
.hamburger_menu_cover {
  position: fixed;
  /*top: 0;
  right: 0;*/
  top: 2vh;
  right: 2vw;
  z-index: 1001;
  mix-blend-mode: difference;
}
.hamburger_menu {
  display: flex;
  align-items: center;
  /*width: 30px;*/
  width: 60px;
  height: 30px;
  padding: 15px;
  cursor: pointer;
}
.hamburger_menu__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: transparent;
  position: relative;
  transition: all 0.5s;
}
.hamburger_menu__line::before,
.hamburger_menu__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fcee21;
  position: absolute;
  transition: all 0.5s;
}
.hamburger_menu__line::before {
  transform: translateY(-10px);
}
.hamburger_menu__line::after {
  transform: translateY(-3px);
}
.hamburger_menu.open .hamburger_menu__line::before {
  transform: rotate(15deg);
}
.hamburger_menu.open .hamburger_menu__line::after {
  transform: rotate(-15deg);
}
.hamburger_menu__line span {
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: #fcee21;
  font-weight: 600;
  font-family: "Montserrat";
  transition: all 0.5s;
}
.hamburger_menu.open .hamburger_menu__line span:nth-child(1) {
  display: none;
}
.hamburger_menu__line span:nth-child(2) {
  display: none;
}
.hamburger_menu.open .hamburger_menu__line span:nth-child(2) {
  display: block;
}
.nav_sp {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  padding: 160px 5% 80px;
  background: #fff;
  text-align: left;
  transition: right 0.5s;
  overflow: scroll;
  z-index: 999;
}
.nav_sp.open {
  right: 0;
  z-index: 1000;
}
.nav_sp_inner .logo {
  width: 160px;
  height: 30px;
  color: transparent;
  margin-bottom: 120px;
  background: url("../images/logo.jpg") no-repeat center;
  background-size: contain;
}
.nav_sp_inner ul {
  text-align: right;
  margin-right: 10px;
}
.nav_sp_inner li {
  font-size: 18px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: italic;
  margin-bottom: 45px;
}
.nav_sp_inner li.contact {
  font-weight: 600;
}
.nav_sp_inner li a {
  color: #000;
  text-decoration: none;
}
.nav_sp_inner .contact_txt {
  color: #000;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}
.nav_sp_inner p.contact_button {
  max-width: 320px;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
}
.nav_sp_inner p.contact_button a {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 20px 10px;
  border: #000 1px solid;
}
@media screen and (min-width: 600px) {
  .nav_sp {
    right: -50%;
    width: 50%;
    padding: 100px 5% 80px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  }
  .nav_sp_inner .logo {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  #header {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #header h1 {
    width: 225px;
  }
  .hamburger_menu_cover {
    display: none;
  }
  #header .g_navi {
    display: block;
  }
  #header .g_navi ul {
    height: 100%;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
	-webkit-align-items: center;
    align-items: center;
  }
  #header .g_navi ul li {
    font-size: 18px;
    font-weight: 400;
    font-family: "Montserrat";
	margin-right: 30px;
  }
  #header .g_navi ul li:last-child {
	margin-right: 0;
  }
  #header .g_navi ul li a {
    color: #000;
	text-decoration: none;
    transition: 0.3s;
  }
  #header .g_navi ul li a:hover {
    transition: 0.3s;
    opacity: 0.8;
  }
  /*
  #header .g_navi ul li:last-child a {
    color: #0311de;
  }
  */
}
@media screen and (max-width: 600px) {
  #header h1 {
    width: 160px;
    margin-top: 3px;
  }
}


/* ======================================================

   footer

========================================================= */

#footer {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 20px;
}
#footer .logo {
  width: 220px;
  margin: 0 auto 20px;
  mix-blend-mode: difference;
  filter: invert(1);
}
#footer p {
  text-align: center;
}
#footer p.company_name {
  font-size: 16px;
  margin-bottom: 10px;
}
#footer p.company_address {
  font-size: 12px;
  margin-bottom: 80px;
}
#footer p.copy {
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  #footer {
    max-width: 1000px;
  }
}

/* ======================================================

   index

========================================================= */
.video-wrap {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background: #000;
  background-size: cover;
}
.video-wrap video {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: -60%;
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
}
@media screen and (min-width: 600px) {
  .video-wrap video {
    right: -40%;
  }
}
@media screen and (min-width: 1025px) {
  .video-wrap video {
    right: 0;
  }
}

.first_view {
  width: 100%;
  height: 100svh;
  padding: 0 5%;
  background: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.first_view h2 {
  color: #292929;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.8;
  margin: 200px 0 15px;
}
.first_view p {
  font-size: 14px;
  font-family: "Montserrat";
  font-weight: 600;
  line-height: 2.2;
  color: #bdd5ef;
  margin-bottom: auto;
}
.first_view .scrolldown {
  position: absolute;
  bottom: 0;
  right: 45px;
  z-index: 1;
}
.first_view .scrolldown span {
  position: absolute;
  left: 10px;
  bottom: 100px;
  color: #000;
  font-size: 14px;
  font-family: "Montserrat";
  font-weight: 600;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.first_view .scrolldown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 80px;
  background: #B1B1B1;
  z-index: 1;
  animation: circlemove 2.5s ease-in-out infinite;
}
@keyframes circlemove{
    0% {
      bottom: 70px;
	}
   100% {
     bottom: -150px;
   }
 }
.first_view .scrolldown::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 150px;
  background: #000;
}
@media screen and (min-width: 600px) {
  .first_view {
    width: 55.63%;
    max-width: 800px;
    padding: 0 5%;
  }
  .first_view h2 {
    font-size: 40px;
  }
  .first_view p {
    font-size: 16px;
  }
  .first_view .scrolldown {
    right: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .first_view h2 {
    font-size: 50px;
  }
  .first_view p {
    font-size: 20px;
  }
}

.index_concept {
  margin-bottom: 100px;
}
.index_concept::before,
.index_concept::after {
  content: "";
  display: block;
  width: 100%;
}
.index_concept::before {
  height: 20vh;
}
.index_concept::after {
  height: 25vh;
  background: url("../images/index_concept.jpg") no-repeat center;
  background-size: cover;
}
.index_concept_contents {
  padding: 10% 10% 12%;
  background: #000;
}
.index_concept_contents h3 {
  font-size: 26px;
  line-height: 1.6;
  color: #bdd5ef;
  margin-bottom: 15px;
}
.index_concept_contents p {
  font-size: 16px;
  color: #caaba5;
}
@media screen and (min-width: 600px) {
  .index_concept {
    position: relative;
  }
  .index_concept::before {
    width: 55.63%;
    height: 100%;
	background: #fff;
    position: absolute;
    left: 0;
    top: 0;
  }
  .index_concept::after {
    height: 55vh;
    position: relative;
  }
  .index_concept_contents {
    width: 65%;
    padding: 4% 5% 5%;
    position: relative;
    left: 0;
    top: 120px;
    background: #000;
    box-sizing: border-box;
    z-index: 1;
  }
  .index_concept_contents h3 {
    font-size: 34px;
  }
}
@media screen and (min-width: 1025px) {
  .index_concept {
    margin-bottom: 150px;
  }
  .index_concept::before {
    max-width: 800px;
  }
  .index_concept::after {
    height: 56vh;
  }
  .index_concept_contents {
    width: 60%;
    max-width: 800px;
    padding: 2% 3% 3%;
    left: 135px;
  }
  .index_concept_contents h3 {
    font-size: 45px;
    margin-bottom: 25px;
  }
  .index_concept_contents p {
    font-size: 18px;
  }
}

.index_service_contents {
  width: 90%;
  padding-top: 100px;
  margin: -100px auto 120px;
}
.index_service_contents h4 {
  text-align: center;
  margin-bottom: 20px;
}
.index_service_contents h4 span.en {
  display: block;
  color: #ededed;
  font-size: 46px;
  font-family: "Montserrat";
  font-weight: 600;
}
.index_service_contents h4 span.jp {
  font-size: 20px;
  font-weight: 400;
  color: #bdd5ef;
  mix-blend-mode: difference;
}
.index_service_contents .chat_gpt_cover {
  /*background: url("../images/chara-ai/Frame3.jpg") no-repeat center;*/
  background-size: cover;
  border: #FFF 6px solid;
  padding: 70px 40px 50px;
}
.index_service_contents .chat_gpt_cover .chat_img {
  width: 60%;
  margin: 0 auto 40px;
}
.index_service_contents .chat_gpt_cover h5,
.index_service_contents .chat_gpt_cover h6 {
  font-weight: 700;
}
.index_service_contents .chat_gpt_cover h5 {
  font-size: 40px;
  margin-bottom: 20px;
}
.index_service_contents .chat_gpt_cover h6 {
  font-size: 24px;
  margin-bottom: 15px;
}
.index_service_contents p.service_button {
  max-width: 320px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 50px auto 0;
}
.index_service_contents p.service_button a {
  display: block;
  color: #ededed;
  text-decoration: none;
  padding: 20px 10px;
  border: #ededed 1px solid;
}
@media screen and (min-width: 600px) {
  .index_service_contents h4 {
    margin-bottom: 40px;
  }
  .index_service_contents h4 span.en {
    font-size: 70px;
  }
  .index_service_contents h4 span.jp {
    font-size: 26px;
  }
  .index_service_contents .chat_gpt_cover {
    padding: 70px 60px;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
	-webkit-align-items: center;
    align-items: center;
  }
  .index_service_contents .chat_gpt_cover .chat_img {
    width: 20%;
    margin: 0;
  }
  .index_service_contents .chat_gpt_cover .chat_txt {
    width: 75%;
  }
}
@media screen and (min-width: 1025px) {
  .index_service_contents {
    max-width: 1400px;
    margin: -100px auto 250px;
  }
  .index_service_contents h4 {
     margin-bottom: 100px;
  }
  .index_service_contents h4 span.en {
    font-size: 120px;
    text-align: right;
  }
  .index_service_contents h4 span.jp {
    font-size: 36px;
  }
  .index_service_contents .chat_gpt_cover {
    border: #FFF 12px solid;
	padding: 100px 200px;
  }
  .index_service_contents .chat_gpt_cover .chat_img {
    width: 30%;
  }
  .index_service_contents .chat_gpt_cover .chat_txt {
    width: 60%;
  }
  .index_service_contents .chat_gpt_cover h5 {
    font-size: 80px;
    margin-bottom: 40px;
  }
  .index_service_contents .chat_gpt_cover h6 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .index_service_contents p.service_button a {
    color: #ededed;
	transition: 0.3s;
  }
  .index_service_contents p.service_button:hover a {
    color: #000;
    background: #ededed;
	transition: 0.3s;
  }
}

.index_about_contents {
  width: 90%;
  padding-top: 100px;
  /*padding-bottom: 50px;*/
  margin: -100px auto 100px;
}
.index_about_contents h4 {
  text-align: center;
  margin-bottom: 20px;
}
.index_about_contents h4 span.en {
  display: block;
  color: #ededed;
  font-size: 46px;
  font-family: "Montserrat";
  font-weight: 600;
}
.index_about_contents h4 span.jp {
  font-size: 20px;
  font-weight: 400;
  color: #bdd5ef;
  mix-blend-mode: difference;
}
.index_about_contents table {
  max-width: 1000px;
  margin: 0 auto;
  mix-blend-mode: difference;
}
.index_about_contents table tr,
.index_about_contents table th,
.index_about_contents table td {
  display: block;
  box-sizing: border-box;
}
.index_about_contents table th {
  font-weight: 400;
}
.index_about_contents table td {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .index_about_contents h4 {
    margin-bottom: 40px;
  }
  .index_about_contents h4 span.en {
    font-size: 70px;
  }
  .index_about_contents h4 span.jp {
    font-size: 26px;
  }
  .index_about_contents table tr {
    display: table-row;
  }
  .index_about_contents table th {
    width: 30%;
    padding: 15px 50px 15px 0;
    text-align: right;
  }
  .index_about_contents table th,
  .index_about_contents table td {
	display: table-cell;
  }
  .index_about_contents table td {
	padding: 15px 0 15px 0;
  }
}
@media screen and (min-width: 1025px) {
  .index_about_contents {
    max-width: 1400px;
    margin: -100px auto 250px;
  }
  .index_about_contents h4 {
    text-align: left;
	margin-bottom: 100px;
  }
  .index_about_contents h4 span.en {
    font-size: 120px;
  }
  .index_about_contents h4 span.jp {
    font-size: 36px;
	padding-left: 60px;
  }
}

.index_contact_contents {
  width: 90%;
  padding-top: 100px;
  margin: -100px auto 120px;
}
.index_contact_contents h4 {
  text-align: center;
  margin-bottom: 40px;
}
.index_contact_contents h4 span.en {
  display: block;
  color: #ededed;
  font-size: 46px;
  font-family: "Montserrat";
  font-weight: 600;
}
.index_contact_contents h4 span.jp {
  font-size: 20px;
  font-weight: 400;
  color: #bdd5ef;
  mix-blend-mode: difference;
}
.index_contact_contents p {
  font-size: 18px;
  text-align: center;
}
.index_contact_contents p.contact_button {
  max-width: 320px;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 400;
  margin: 100px auto;
}
.index_contact_contents p.contact_button  {
  display: block;
  color: #ededed;
  text-decoration: none;
  padding: 20px 10px;
  border: #ededed 1px solid;
}
.contact_button a{
  color: #fff;;
}
@media screen and (min-width: 600px) {
  .index_contact_contents h4 {
    margin-bottom: 40px;
  }
  .index_contact_contents h4 span.en {
    font-size: 70px;
  }
  .index_contact_contents h4 span.jp {
    font-size: 26px;
  }
}
@media screen and (min-width: 1025px) {
  .index_contact_contents {
    max-width: 1400px;
    margin: -100px auto 120px;
  }
  .index_contact_contents h4 {
    margin-bottom: 50px;
  }
  .index_contact_contents h4 span.en {
    font-size: 120px;
  }
  .index_contact_contents h4 span.jp {
    font-size: 36px;
  }
  .index_contact_contents p {
    font-size: 20px;
  }
  .index_contact_contents p.contact_button  {
    color: #ededed;
	transition: 0.3s;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  }
  .index_contact_contents p.contact_button:hover  {
    color: #000;
    background: #ededed;
	transition: 0.3s;
  }
}

/* ======================================================

   下層ページ共通

========================================================= */
.container {
  width: 1100px;
  margin: 0 auto;
}
header#layer_header {
  background: #000;
  width: 100%;
  height: 50px;
  padding: 10px 0;
  top: 0;
  left: 0;
  position: fixed;
}
header#layer_header #header h1 {
  margin-top: 5px;
}
#layer_header #header .g_navi ul li a {
  color: #FFF;
}
#layer_header #header .g_navi ul li:last-child a {
  color: #D5D5D5;
}
#layer_footer {
  background: url(../images/footer-img.png) no-repeat right 10% bottom;
  background-color: #000;
  width: 100%;
}

#footer p {
  color: #FFF;
}

#layer_footer #footer {
  max-width: none;
  padding-bottom: 0;
}
#layer_footer #footer p.copy {
  font-size: 12px;
  padding-bottom: 10px;
}
.footer-privacy {
  padding-bottom: 10px;
  font-size: 12px;
  text-align: center;
}
ul.footer-privacy a {
  color: #FFF;
  text-decoration: none;
}
ul.footer-privacy a:hover {
  color: #fffc;
  transition: 0.3s;
}
ul.footer-privacy li {
  display: inline-block;
  padding: 0 10px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}

@media only screen and (max-width:1025px) {
  #privacy {
    margin: 70px auto 0;
  }

  footer#layer_footer {
    margin-top: 160px;
    background: #000;
  }
}

@media only screen and (min-width:600px) {
  .mb20 {
    margin-bottom: 20px;
  }
  #privacy h3 {
    font-size: 40px;
  }
  .index_contact_contents {
    width: 90%;
    padding-top: 80px;
    margin: -100px auto 80px;
  }
  .hamburger_menu {
    padding: 21px 21px 15px 15px;
  }
  .sp {
    display: contents;
  }
}

@media only screen and (max-width:600px) {
  .index_contact_contents {
    padding-top: 50px;
    margin: -100px auto 80px;
  }
  #layer_header h1 img {
    width: 100%;
  }
  header#layer_header {
    height: 60px;
  }
  header#layer_header h1 img {
    width: 100%;
  }
  header#layer_header #header h1 {
    margin-top: 2px;
  }
  
}


/* ======================================================

   上下マージン・パディング

========================================================= */

.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb30-2{
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .mb30-2{
    margin-bottom: 15px;
  }
}
.mb40 {
  margin-bottom: 40px;
}
.mb34 {
  margin-bottom: 34px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb120 {
  margin-bottom: 120px;
}
.mb210 {
  margin-bottom: 210px;
}
.pb0 {
  padding-bottom: 0;
}



/* ======================================================

   【 下層 】チャットAIページ

========================================================= */
.EN {
  font-family: Poppins;
  font-weight: 600;
  font-size: 60px;
}
.questions h4 {
  font-size: 36px;
  color: #000;
  font-family: inherit;
  font-weight: 500;
}

.chara-ai-pc {
  width: 100%;
  height: auto;
}
.chara-ai_content {
  background: url(../images/chara-ai/pc-bg.png);
  background-size: cover;
  height: 100vh;
}
.chara-ai_content .mv {
  max-width: 1150px;
  margin: 0 auto;
  padding: 100px 0 0;
}
.chara-ai_content-left {
  float: left;
  margin-left: 0;
}
.chara-ai_content-right {
  float: right;
  margin-top: 57px;
}
.main-text {
  font-size: 38px;
  font-weight: 400;
  font-family: inherit;
  line-height: 1.5em;
  text-align: center;
  letter-spacing: 0.9px;
}
p.small-text {
  padding-top: 50px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.section-butoon {
  text-align: center;
}
a.button {
  padding: 23px 160px;
  text-align: center;
  transition: 0.5s;
  background-size: 150% auto;
  color: white;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.2);
  box-shadow: 0 0 20px #545454;
  border-radius: 70px;
  font-weight: 500;
  text-decoration: none !important;
  background-image: linear-gradient(to right, #40DDFF 0%, #0079E9 54%);
}
.chara-ai-button:hover {
  transform: scale(1.1);
}
p.chara-ai-button {
  text-align: center;
}
section.privacy-contents p {
  line-height: 1.8em;
}

@media screen and (max-width: 1024px) {
  .chara-ai_content-left {
    float: none;
  }
  .main-text {
    margin: 35px 0 0 0;
  }
  .chara-ai-pc {
    width: 32%;
    margin-top: 30px;
  }
  .chara-ai_content-right {
    float: none;
    text-align: center;
  }
  .chara-ai_content .mv {
    padding: 55px 0 0;
  }
  .EN {
    font-size: 53px;
  }
}

@media screen and (max-width: 600px) {
  p.main-text {
    font-size: 22px;
  }
  p.small-text {
    font-size: 13px;
  }
  .section-butoon a {
    padding: 14px 89px;
    font-size: 15px;
  }
  .chara-ai_content-right {
    margin-top: 28px;
  }
  .main-text {
    font-size: 30px;
    margin: 0;
  }
  .chara-ai_content {
    text-align: center;
  }
  .chara-ai_content-left {
    float: none;
    text-align: center;
  }
  .chara-ai-pc {
  width: 80%;
  margin-top: 20px;
  }
  a.button {
    padding: 14px 70px;
  }
  .section-chara-ai {
    padding: 82px 0 0;
  }
  .EN {
    font-size: 29px;
    font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  }
  #chara-ai #header h1 {
    width: 45%;
    position: relative;
    top: 6px;
  }
}


/* ======================================================

   【 下層 】プライバシーポリシー

========================================================= */
#privacy #header .g_navi ul {
  position: relative;
  top: 0;
  left: 0;
}
#privacy #header .g_navi ul li a {
  color: #7a7a7a;
}

#privacy header#outer_header {
  filter: none;
  mix-blend-mode: unset;
}
#privacy {
  margin: 90px auto 0;
  background: #FFF;
  color: #000;
}
section.privacy-contents {
  max-width: 1000px;
}
#privacy h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
#privacy h2 {
  font-size: 23px;
  font-weight: 500;
  font-family: auto;
  margin-bottom: 4px;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
}

.marginL50 {
  margin-left: 50px;
}
section.privacy-contents {
  max-width: 1040px;
  margin: 0 auto;
  padding-bottom: 200px;
}
.mail-link a {
  color: #1676c3;
}

@media screen and (min-width: 600px) {
  #privacy h2 {
    font-size: 23px;
  }
  section.privacy-contents {
    margin: 0 20px 0;
  }
  #privacy {
    margin: 70px auto 0;
  }
}

@media screen and (min-width: 1025px) {
  #privacy {
    margin: 50px auto 0;
  }
  .index_contact_contents {
    padding-top: 70px;
    margin: 0 auto 70px;
  }
  section.privacy-contents {
    margin: 0 20px;
    padding-bottom: 40px;
  }
  #privacy #outer_header {
    mix-blend-mode: darken;
    filter: none;
  }
  section.privacy-contents {
    margin: 100px auto 40px;
  }
  #privacy h3 {
    font-size: 37px;
  }
  #layer_footer {
    margin-top: 160px;
  }
}


@media screen and (max-width: 600px) {
  #layer_footer {
    margin-top: 10px;
    background: #000;
  }
  #privacy {
    margin: 60px auto 0;
  }
  .marginL50 {
    margin-left: 0;
  }
  section.privacy-contents {
    margin: 0 20px;
    padding-bottom: 40px;
  }
  #privacy h3 {
    margin-bottom: 25px;
    font-size: 32px;
  }
  #privacy h1 img {
    width: 90%;
    position: relative;
    top: 0;
  }
  #privacy #outer_header {
    mix-blend-mode: darken;
    filter: none;
  }
  #privacy #header h1 {
    width: 160px;
    margin-top: 5px;
  }
}


/* ======================================================

   【 下層 】ミッションページ

========================================================= */

body#mission {
  background: #000;
}
.section-mission h1 {
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.7em;
  letter-spacing: 3.0px;
}
.section-mission h3 {
  font-size: 48px;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
}
.section-mission {
  width: 670px;
  margin: 276px auto 0;
  color: #D5D5D5;
  letter-spacing: 1.6px;
}
#mission header#graycolor-header ul li a {
  color: #6f6f6f;
}
#mission #header .g_navi ul li:last-child a {
  color: #626262;
}
header#graycolor-header .gnav ul {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}
header#graycolor-header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 17px;
  left: 0;
  z-index: 1000;
  mix-blend-mode: difference;
  filter: invert(1);
}
.pattern {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background: #000;
  opacity: 0.75;
}
#mission #header .g_navi ul li a {
  color: #D5D5D5;
}
#mission #header .g_navi ul li:last-child a  {
  color: #D5D5D5;
}
#mission header#outer_header {
  filter: none;
  mix-blend-mode: unset;
}

@media screen and (max-width: 600px) {
  .section-mission h1 {
    font-size: 23px;
    text-align: left;
    line-height: 1.8em;
    letter-spacing: 1.4px;
  }
  .section-mission h3 {
    font-size: 38px;
    text-align: left;
    margin-bottom: 40px;
  }
  .section-mission p {
    text-align: left;
    font-size: 15px;
  }
  .mission_content {
    margin: 0 24px;
  }
  .section-mission {
    margin: 170px auto 0;
    width: 100%;
  }
  .sp {
    display: block;
  }
  br.pc {
    display: contents;
  }
  p.jap-text {
    font-size: 21px !important;
  }
}

@media screen and (min-width: 375px) {
  #graycolor-header .hamburger_menu__line::before, .hamburger_menu__line::after {
    background-color: #bcbcbc;
  }
  #graycolor-header .hamburger_menu__line::before, .hamburger_menu__line::before {
    background-color: #bcbcbc;
  }
  span.gray-text {
    color: #bcbcbc;
}



/* ======================================================

   【 下層 】join us ページ

========================================================= */

body#joinus {
  background: #000;
}
.joinus_content {
  margin: 276px auto 200px;
  width: 650px;
}
.section-joinus h1 {
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 580;
  font-size: 30px;
  line-height: 1.7em;
  letter-spacing: 1.6px;
}
.section-joinus h3 {
  font-size: 48px;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
}
.section-joinus {
  color: #D5D5D5;
}
#joinus header#graycolor-header ul li a {
  color: #626262;
}
#joinus #header .g_navi ul li:last-child a {
  color: #626262;
}
.jap-text {
  font-size: 26px;
}
.jobs {
  font-size: 24px;
  line-height: 1.3em;
}
span.recruit-small-text {
  font-size: 13px;
  color: #838383;
}
.tools {
  background: #FFF;
  padding: 28px 20px;
  border-radius: 18px;
}
.tools li {
  display: inline-block;
  margin: 17px 12px 14px 30px;
  width: 25%;
}

ul.tools-1 {
  text-align: center;
}
#joinus #header .g_navi ul li a {
  color: #D5D5D5;
}
#joinus #header .g_navi ul li:last-child a  {
  color: #D5D5D5;
}
#joinus header#outer_header {
  filter: none;
}
li.img-small img {
  width: 38%;
}
li.vscode-img {
  width: 40%;
  position: relative;
  left: -12%;
}
li.react-img {
  margin: 0;
  width: 30%;
  position: relative;
  top: -7px;
  right: -2%;
}
@media screen and (max-width: 600px) {
  .section-joinus h1 {
    font-size: 28px;
    line-height: 1.7em;
    margin-bottom: 18px;
    text-align: left;
  }
  .section-joinus h3 {
    font-size: 38px;
    text-align: left;
    margin-bottom: 40px;
  }
  .joinus_content {
    margin: 0 30px;
    font: var(--font_0);
    color: rgb(var(--color_15));
    letter-spacing: 0em;
    width: auto;
  }
  .section-joinus {
    margin: 143px auto 140px;
    width: 100%;
  }
  .tools li {
    margin: 7px;
    width: 25%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
  }
  li.block {
    display: -webkit-inline-box;
  }
  .tools {
    padding: 30px 0 30px 0;
  }
  ul.tools-top li {
    width: 46%;
    margin: 0;
  }
  span.recruit-small-text {
    font-size: 12px;
  }
  .section-joinus p {
    font-size: 15px;
    line-height: 2em;
    text-align: left;
  }
  .sp-text-left {
    text-align: left;
  }
  .jobs {
    font-size: 17px;
  }
}


/* ======================================================

   【 下層 】News ページ

========================================================= */

body#news {
  background: #000;
}
.news_content {
  margin: 276px auto 200px;
  width: 660px;
}
.section-news h3 {
  font-size: 48px;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 3.7px;
}
.section-news {
  color: #D5D5D5;
}
#section_news ul li {
  color: #D5D5D5;
  display: inline-block;
  margin-bottom: 8px;
}
.date {
  font-size: 18px;
  margin: 0 14px 0 0;
  position: relative;
  top: 1px;
}
li.news-text a {
  text-decoration: none;
  color: #D5D5D5;
}
li.news-text a:hover {
  transition: 0.3s;
  color: #989898;
}
.section_news ul {
  margin: 0;
  letter-spacing: 2px;
  display: flex;
  font-size: 18px;
  line-height: 2.7em;
  padding: 0 0 25px 0;
}

#news #header .g_navi ul li a {
  color: #D5D5D5;
}
#news #header .g_navi ul li:last-child a  {
  color: #D5D5D5;
}
#news header#outer_header {
  filter: none;
}
li.aws-img {
  width: 18%;
  margin: 17px 0 14px 19px;
}
li.figma-img {
  position: relative;
  left: 0;
  width: 17%;
  top: -3px;
}
li.moneyforward-img {
  margin: 17px 0 14px 22px;
  width: 22%;
}
li.notion-img {
  margin: 17px 0 14px 20px;
  width: 19%;
  top: 5px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .section-news h3 {
    font-size: 47px;
    text-align: left;
    margin-bottom: 40px;
  }
  .news_content {
    margin: 0 24px;
    font: var(--font_0);
    color: rgb(var(--color_15));
    letter-spacing: 0em;
    width: auto;
  }
  .section-news {
    margin: 170px auto 140px;
    width: 100%;
  }
  .date {
    font-size: 13px;
  }
  #section_news ul li {
    display: block;
    font-size: 16px;
  }
  .section_news ul {
    margin-bottom: 30px;
    white-space: normal;
    display: block;
    padding: 0;
  }
  .news_content {
    margin: 0 30px;
  }
  li.aws-img {
    width: 21%;
    position: relative;
    top: 5px;
  }
  li.github-img {
    width: 39%;
    position: relative;
    top: 13px;
}
  li.moneyforward-img {
    position: relative;
    left: 3px;
  }
  .tools li {
    margin: 9px 6px;
    width: 38%;
  }
  li.ga-img {
    margin: 0;
    width: 39%;
    position: relative;
    left: 12px;
    top: 27px;
  }
  li.workspace-img {
    position: relative;
    top: 0px;
    left: 4px;
  }
  li.notion-img {
    width: 32%;
}
  li.supabese-img {
    position: relative;
    left: 5px;
  }
  li.vscode-img {
    position: relative;
    left: -38px;
    width: 32%;
  }
  li.react-img {
    position: relative;
    left: -39px;
    top: 3px;
  }
  #section_news li.date {
    font-size: 13px;
  }
}


/* ======================================================

   【 下層 】キャラAIページ

========================================================= */
#chara-ai #layer_footer {
  background: #000;
  width: 100%;
  padding-top: 50px;
}
#chara-ai #header .g_navi ul li:last-child a {
  color: #626262;
}
.section-chara-ai{
  max-width: 1150px;
    margin: 0 auto;
    padding: 100px 0 0;
}
#chara-ai #header .g_navi ul li a {
  color: #D5D5D5;
}
#chara-ai #header .g_navi ul li:last-child a  {
  color: #D5D5D5;
}
#chara-ai header#outer_header {
  filter: none;
  mix-blend-mode: unset;
}

@media screen and (max-width: 600px) {
#chara-ai .hamburger_menu__line:before, #chara-ai .hamburger_menu__line::after {
  background-color: #ffffff;
}
}

.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #aeaeae;
}
.qa-list dl:first-child {
    border-top: 1px solid #aeaeae;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    font-size: 20px;
    color: #2a2a2a;
}
.qa-list dl dt::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    content: 'Q.';
    color: #2c79e8;
}
.qa-list dl dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #2c79e8;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 45px 0 0;
    padding: 0 0 0 50px;
    font-size: 18px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
  margin-top: 0;
  color: #2a2a2a;
  line-height: 1.7em;
}

#chara-ai h3 {
  font-size: 3px;
  color: #232323;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .qa-list dl {
      position: relative;
      padding: 15px 40px 15px 10px;
  }
  .qa-list dl::before {
      top: 20px;
      right: 20px;
      width: 7px;
      height: 7px;
  }
  .qa-list dl dt {
      padding: 0 0 0 30px;
      font-size: 14px;
  }
  .qa-list dl dt::before {
      font-size: 14px;
      top: 3px;
      left: 5px;
      content: 'Q.';
  }
  .qa-list dl dd::before {
      font-size: 14px;
      top: 5px;
      left: 5px;
      content: 'A.';
  }
  .qa-list dl dd {
      margin: 10px 0 0;
      padding: 0 0 0 30px;
      font-size: 14px;
  }
  .qa-list dl dd p {
      margin: 30px 0 0;
  }
  .qa-list dl dd p:first-child{
      margin-top: 0;
  }
}


/* ======================================================

   【 下層 】会社概要

========================================================= */

body#aboutus-layer {
  background: #000;
}
.section-aboutus h1 {
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.7em;
  letter-spacing: 3.0px;
  text-align: center;
}
.section-aboutus h3 {
  font-size: 48px;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
}
.section-aboutus {
  width: 670px;
  margin: 0 auto 0;
  /*padding-top: 276px;*/
  padding-top: 170px;
  padding-bottom: 140px;
  color: #D5D5D5;
  background-color: transparent;
  letter-spacing: 1.6px;
}
#aboutus-layer #header .g_navi ul li a {
  color: #D5D5D5;
}
#aboutus-layer header#outer_header {
  filter: none;
}
#aboutus-layer .index_about_contents h4 {
  text-align: center;
  margin-bottom: 34px;
}
#aboutus-layer .index_about_contents h4 span.jp {
  color: #D5D5D5;
  mix-blend-mode: difference;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.7em;
  letter-spacing: 3.0px;
  font-size: 40px;
  padding-left: 0;
}
#aboutus-layer .index_about_contents {
  margin: -100px auto 0;
}

@media screen and (max-width: 600px) {
  .section-aboutus h3 {
    font-size: 38px;
    text-align: left;
    margin-bottom: 40px;
  }
  .section-aboutus h1 {
    font-size: 23px;
    text-align: left;
    line-height: 1.8em;
    letter-spacing: 1.4px;
  }
  #aboutus-layer .index_about_contents h4 {
    text-align: left;
  }
  #aboutus-layer .index_about_contents {
    margin: 0 auto;
    width: 100%;
    padding-top: 0;
  }
  .section-aboutus {
    /*margin: 170px auto 140px;*/

    width: 100%;
  }
  .date {
    font-size: 13px;
  }
  #section_aboutus ul li {
    display: block;
    font-size: 16px;
  }
  .section_aboutus ul {
    margin-bottom: 30px;
  }
  .aboutus_content {
    /*margin: 0 30px;*/
    padding: 0 30px;
  }
  #aboutus .index_about_contents table {
    max-width: 1000px;
    margin: 0 auto;
    mix-blend-mode: difference;
    font-size: 16px;
    color: #D5D5D5;
    display: inline-block;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
  }
}



/* ======================================================

   【 下層 】反社会的勢力への対応に関する基本方針

========================================================= */

#layer_footer #footer {
  max-width: none;
  padding-bottom: 0;
}
#layer_footer #footer p.copy {
  font-size: 12px;
  padding-bottom: 10px;
}
p.footer-antisocial {
  padding-bottom: 10px;
  font-size: 12px;
}
p.footer-antisocial a {
  color: #FFF;
  text-decoration: none;
}
p.footer-antisocial a:hover {
  color: #fffc;
  transition: 0.3s;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
#antisocial header#outer_header {
  filter: none;
  mix-blend-mode: unset;
}
#antisocial {
  margin: 50px auto 0;
}
section.antisocial-contents {
  margin: 100px auto 40px;
}
#antisocial {
  margin: 50px auto 0;
  background: #FFF;
  color: #000;
}
section.antisocial-contents p {
  line-height: 1.8em;
}
#antisocial #header .g_navi ul li a {
  color: #7a7a7a;
}
#antisocial h2 {
  font-size: 23px;
  font-weight: 500;
  font-family: auto;
  margin-bottom: 4px;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
}
#antisocial h3 {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 37px;
}
section.antisocial-contents {
  max-width: 1040px;
  margin: 100px auto 400px;
}
th.add-letter-space-2 {
  letter-spacing: 2.5px;
}
th.add-letter-space-3 {
  letter-spacing: 3.2px;
}
th.add-letter-space-4 {
  letter-spacing: 2.5px;
}
@media only screen and (max-width:1025px) {
  #antisocial {
    margin: 70px auto 0;
  }

  footer#layer_footer {
    margin-top: 160px;
    background: #000;
  }
}

@media only screen and (min-width:600px) {
  .mb20 {
    margin-bottom: 20px;
  }
  #antisocial h3 {
    font-size: 40px;
  }
  .index_contact_contents {
    width: 90%;
    padding-top: 80px;
    margin: -100px auto 80px;
    font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  }
  .hamburger_menu {
    padding: 21px 21px 15px 15px;
  }
  .sp {
    display: contents;
  }
}

@media only screen and (max-width:600px) {
  .index_contact_contents {
    padding-top: 50px;
    margin: -100px auto 80px;
  }
  #layer_header h1 img {
    width: 100%;
  }
  header#layer_header {
    height: 60px;
  }
  header#layer_header h1 img {
    width: 100%;
  }
  header#layer_header #header h1 {
    margin-top: 2px;
  }
  section.antisocial-contents {
    margin: 0 20px;
    padding-bottom: 40px;
  }
  th.add-letter-space-3 {
    letter-spacing: 0;
  }
  th.add-letter-space-4 {
    letter-spacing: 2px;
  }
  span.empty {
    display: none;
  }
}

/* ======================================================

   個別ページ

========================================================= */
#privacy h4{
  font-size: 37px;
  font-weight: bold;
}
#privacy h5{
  color: #6A6A6A;
  font-size: 23px;
}
@media screen and (max-width: 480px) {
  #privacy h4{
    font-size: 20px;
    font-weight: bold;
  }
  #privacy h5{
    color: #6A6A6A;
    font-size: 18px;
  }
}
.time{
  color: #6A6A6A;
  padding-bottom: 50px;
}
.time img{
  width: 16px;
  padding-bottom: 6px;
  padding-right: 5px;
}
.mb20_img{
  margin: 50px auto;
}
.title{
  font-weight: bold;
}
.bg{
  padding: 20px;
  background-color: #EDEDED;
}
.bg p {
  line-height: 50px;
}
.linkc a{
  color: #19AFFF;
}




/* ======================================================

   コンタクト

========================================================= */

.contact_content {
  margin: 276px auto 200px;
  width: 650px;
}
.section-contact h3 {
  font-size: 48px;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 3.7px;
  margin: 276px auto 0;

}
.section-contact {
  width: 670px;
  margin: 276px auto 0;
  color: #D5D5D5;
  letter-spacing: 1.6px;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
}
#section_contact ul li {
  color: #D5D5D5;
  display: inline-block;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.contact_txt{
  text-align: center;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
}
#layer_contact {
  background: url(../images/footer-img.png) no-repeat right 10% bottom;
  background-color: #000;
  width: 100%;
}
@media screen and (max-width: 480px) {
  #layer_contact {
    background-image: none;
  }
}
.Form {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  text-align: center;
  font-family: "Futura", "Noto Sans JP", "Didact Gothic", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  padding-top: 24px;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 340px;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-size: 18px;
  color: #d5d5d5;
  text-align: left;
  padding-left: 130px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    display: flex;
    align-items: center;
    font-size: 15px;
    padding-left: 0;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #fff;
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #fff;
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.p_btn{
  font-size: 12px;
  text-align: center;
  margin-bottom: 100px;
}
.p_btn a{
  color: #ffff00;
}
.p_btn a:hover{
  color: #ffffff;
}
@media screen and (max-width:480px) {
  .p_btn{
    padding: 0 20px;
  }
  .Form-Item-Input{
    margin-top: 0;
    border-radius: 0;
  }
  .Form-Item-Textarea{
    margin-top: 0;
    border-radius: 0;
  }
  .Form-Item{
    box-sizing: border-box;
    overflow: hidden;
  }
  .Form{
    max-width: 330px;

  }
  .contact_txt{
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
    font-size: 16px;
  }
  .section-contact h3{
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
    margin-top:0;
    font-size: 38px;
  }
  .section-contact{
    margin-top: 170px;
    margin-bottom: 140px;
    width: 100%;
  }
}
.thanks_txt{
  text-align: center;
  margin-bottom: 70px;
}
.alert{
  display: block;
  margin: auto;
  color: #000;
  font-size: 15px;
  text-align: left;
  max-width: 410px;
}
#email-error{
  color: #ff0000;
}
#name-error{
  color: #ff0000;
}
#body-error{
  color: #ff0000;
}

@media screen and (max-width:480px) {
  .alert{
    font-size: 12px;
  }
}
/* ======================================================

   追加

========================================================= */
body {
  display: none;
  }
.btn-lang{
  color: #000;
  font-size: 18px;
  padding-bottom: 6px;
  font-family: "Montserrat";
  font-weight: 400;
}
.btn-lang_p{
  color: #fff;
  font-size: 18px;
  padding-bottom: 6px;
  font-family: "Montserrat";
  font-weight: 300;
}
@media screen and (max-width:480px) {
  .btn-lang{
    margin: 30px;
    text-align: center;
    padding-bottom: 0;
  }
  .btn-lang_p{
    color: #000;
    margin: 30px;
    text-align: center;
    padding-bottom: 0;
  }
}
.smb_h2{
  font-weight: 900;
  text-align: center;
  color: #bdd5ef;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 25px;
}
.smb_h4{
  font-weight: bold;
  color: #bdd5ef;
  text-align: center;
  font-size: 20px;
}
.pl5{
  padding-left: 5px;
}
@media screen and (max-width:480px) {
  .pl5{
    padding-left: 0;
  }
}}

.coming_padding{
  padding-top: 50px;
}
.coming_sp{
  display: none;
}
.c_pc{
  display: block;
}
.c_sp{
  display: none;
}
@media screen and (max-width:480px) {
  .coming_padding{
    display: none;
  }
  .coming_sp{
    display: block;
    padding-top: 50px;
  }
  .c_pc{
    display: none;
  }
  .c_sp{
    display: block;
    text-align: center;
  }
 
  .index_service_contents .chat_gpt_cover{
    padding: 10px 20px;
    height: 497px;
  }
  .index_service_contents .chat_gpt_cover h5{
    font-size: 25px;
    margin-bottom: 0;
    text-align: center;
  }
  .index_service_contents .chat_gpt_cover h6{
    font-size: 20px;
    margin-bottom: 5px;
    text-align: center;
  }
  .index_service_contents .chat_gpt_cover.c_sp img{
    width: 80%;
  }
  .index_service_contents .chat_gpt_cover .chat_img{
    margin-bottom: 10px;
  }
  .index_service_contents .chat_gpt_cover p{
    font-size: 13px;
    line-height: 1.4;
  }
}
.aboutus_bg{
  background-image: url(../images/aboutus_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #000;
}

/*---------------20240624追加修正 onegai---------------*/
.flex_onegai{
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
}
.onegai_content-left{
  width: 45%;
  margin-top: 190px;
}
.onegai_content-left img{
  margin-bottom: 20px;
}
.onegai_content-right{
  width: 50%;
  margin-left: 50px;
  margin-top: 190px;
}
@media only screen and (max-width:600px){
  .flex_onegai{
    display: block;
  }

  .onegai_content-left{
    width: 90%;
    margin: auto;
  }

  .onegai_content-right{
    width: 90%;
    margin: auto;
  }
}
/*---------------20240701追加 投資家・スタートアップ支援企業---------------*/
.sc{
  text-align: left;
  color: #292929;
  margin-bottom: auto;
  font-size: 18px;
  font-weight: 600;
}
.support_c{
  display: flex;
  align-items: center;
}
.support_c img{
  width: 25%;
  padding: 20px 15px;
}
@media screen and (max-width: 600px){
  .sc{
    font-size: 14px;
  }
  .support_c img{
    width: 25%;
    padding: 10px 5px;
  }
}
.support-area{
  width: 100%;
  background-color: #fff;
  margin: 0 auto 250px;
}
.support-area02{
  max-width: 1400px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 100px;
  margin: auto;
}
.support-area img{
  width: 15%;
}
@media screen and (max-width: 600px){
  .support-area{
    margin: 0 auto 200px;
  }
  .support-area02{
    max-width: 90%;
    padding: 30px 20px;
    flex-wrap: wrap;
    justify-content: start;
  }
  .support-area img{
    width: 27%;
    padding: 10px;
  }
}
.index_support_contents {
  width: 90%;
  padding-top: 100px;
  padding-bottom: 0;
  margin: -100px auto 0;
}
.index_support_contents h4 {
  text-align: center;
  margin-bottom: 20px;
}
.index_support_contents h4 span.en {
  display: block;
  color: #ededed;
  font-size: 46px;
  font-family: "Montserrat";
  font-weight: 600;
}
.index_support_contents h4 span.jp {
  font-size: 20px;
  font-weight: 400;
  color: #bdd5ef;
  mix-blend-mode: difference;
}
@media screen and (min-width: 600px) {
  .index_support_contents h4 {
    margin-bottom: 40px;
  }
  .index_support_contents h4 span.en {
    font-size: 70px;
  }
  .index_support_contents h4 span.jp {
    font-size: 26px;
  }
}
@media screen and (min-width: 1025px) {
  .index_support_contents {
    max-width: 1400px;
    margin: -100px auto 0;
  }
  .index_support_contents h4 {
    text-align: left;
  }
  .index_support_contents h4 span.en {
    font-size: 120px;
  }
  .index_support_contents h4 span.jp {
    font-size: 36px;
	padding-left: 60px;
  }
}

.index_about_contents p.service_button {
  max-width: 320px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 50px auto 0;
}
.index_about_contents p.service_button a {
  display: block;
  color: #ededed;
  text-decoration: none;
  padding: 20px 10px;
  border: #ededed 1px solid;
}
@media screen and (min-width: 1025px) {

.index_about_contents p.service_button a {
  color: #ededed;
transition: 0.3s;
}
.index_about_contents p.service_button:hover a {
  color: #000;
  background: #ededed;
transition: 0.3s;
}
  
}
.mt70{
  margin-top: 70px;
}