@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  font-weight: 500;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

section {
  padding: 100px 0;
}
@media (max-width: 599px) {
  section {
    padding: 50px 0;
  }
}

.common_ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .common_ttl {
    margin-bottom: 30px;
  }
}
.common_ttl h2 {
  font-size: 56px;
  color: #d00400;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 599px) {
  .common_ttl h2 {
    font-size: 28px;
  }
}

.cta_area {
  background-image: linear-gradient(179deg, rgb(128, 0, 0), rgb(209, 0, 0) 50%, rgb(235, 0, 0));
  position: relative;
  padding-top: 50px;
  z-index: 10;
  padding-bottom: 100px;
}
@media (max-width: 599px) {
  .cta_area {
    padding-bottom: 70px;
  }
}
.cta_area::before {
  content: "";
  position: absolute;
  bottom: 0;
  background-image: url(../images/bg_cta_02.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  width: 100%;
  padding-top: 18.23%;
}
@media (max-width: 768px) {
  .cta_area::before {
    background-image: url(../images/bg_cta_02_sp.jpg);
    padding-top: 40.01%;
  }
}
.cta_area.cta_area01 {
  padding-top: 100px;
}
@media (max-width: 599px) {
  .cta_area.cta_area01 {
    padding-top: 80px;
  }
}
.cta_area .cta_ttl {
  width: 100%;
  margin: 0 auto 50px;
}
@media (max-width: 768px) {
  .cta_area .cta_ttl {
    margin: 0 auto 25px;
  }
}
.cta_area .cta_box {
  background-color: #fff;
  padding: 50px;
  padding-bottom: 80px;
  border-radius: 10px;
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1200px) {
  .cta_area .cta_box {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .cta_area .cta_box {
    padding: 14px;
  }
}
.cta_area .cta_box h3 {
  font-size: 42px;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Zen Old Mincho", system-ui;
}
@media (max-width: 599px) {
  .cta_area .cta_box h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }
}
.cta_area .cta_box .cta_box_list_p {
  gap: 30px;
}
@media (max-width: 768px) {
  .cta_area .cta_box .cta_box_list_p {
    gap: 0;
    font-size: 11px;
  }
}
.cta_area .cta_box .cta_box_list_p .cta_box_list_c1 {
  flex-basis: 40%;
}
@media (max-width: 768px) {
  .cta_area .cta_box .cta_box_list_p .cta_box_list_c1 {
    flex-basis: 100%;
  }
}
.cta_area .cta_box .cta_box_list_p .cta_box_list_c2 {
  flex-basis: 56%;
}
@media (max-width: 768px) {
  .cta_area .cta_box .cta_box_list_p .cta_box_list_c2 {
    flex-basis: 100%;
  }
}
.cta_area .cta_box .cta_box_list_p li {
  width: 100%;
  font-weight: 500;
  padding: 2px 0;
}
@media (max-width: 599px) {
  .cta_area .cta_box .cta_box_list_p li {
    width: 100%;
    text-indent: -1rem;
    padding-left: 1rem;
  }
}
.cta_area .cta_box .cta_box_btn a {
  background-color: #d00400;
  padding: 15px 0;
  width: 450px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 22px;
  border-radius: 5px;
  box-shadow: 5px 5px 5px 0px #c3c3c3;
}
@media (max-width: 599px) {
  .cta_area .cta_box .cta_box_btn a {
    width: 90%;
    bottom: -100px;
    font-size: 18px;
  }
}
.cta_area .cta_box .cta_box_btn a:hover {
  box-shadow: none;
  transform: translate(-50%, 5px);
  opacity: 1;
}
.cta_area .cta_desc_row {
  margin-bottom: 60px;
}
.cta_area .cta_desc_row .cta_imgs {
  flex-basis: 46%;
}
@media (max-width: 768px) {
  .cta_area .cta_desc_row .cta_imgs {
    flex-basis: 100%;
  }
}
.cta_area .cta_desc_row .cta_imgs .cta_img {
  margin-bottom: 20px;
}
.cta_area .cta_desc_row .cta_imgs figcaption {
  color: #fff;
  margin-top: 8px;
}
@media (max-width: 599px) {
  .cta_area .cta_desc_row .cta_imgs figcaption {
    font-size: 13px;
  }
}
.cta_area .cta_desc_row .cta_table {
  flex-basis: 50%;
  background-color: #fff;
  padding: 40px 50px;
  border-radius: 5px;
  box-shadow: 6px 6px 0px -1px #810000;
}
@media (max-width: 768px) {
  .cta_area .cta_desc_row .cta_table {
    flex-basis: 100%;
    padding: 20px 16px;
  }
}
.cta_area .cta_desc_row .cta_table .cta_table_ttl {
  font-size: 30px;
  text-align: center;
  color: #d00400;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cta_area .cta_desc_row .cta_table .cta_table_ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.cta_area .cta_desc_row .cta_table .cta_table_row {
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 2px dashed #989898;
  min-height: 80px;
}
@media (max-width: 768px) {
  .cta_area .cta_desc_row .cta_table .cta_table_row {
    min-height: 60px;
  }
}
.cta_area .cta_desc_row .cta_table .cta_table_row:last-child {
  border-bottom: 0;
}
.cta_area .cta_desc_row .cta_table .cta_table_row p {
  font-size: 17px;
}
@media (max-width: 768px) {
  .cta_area .cta_desc_row .cta_table .cta_table_row p {
    font-size: 14px;
  }
}
.cta_area .cta_desc_row .cta_table .cta_table_row .cta_left {
  flex-basis: 30%;
  text-align: center;
}
.cta_area .cta_desc_row .cta_table .cta_table_row .cta_right {
  flex-basis: 66%;
}
.cta_area .cta_imgs .cta_img:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cta_area .cta_imgs .cta_img:last-child {
    margin-bottom: 40px;
  }
}
.cta_area .material_list {
  margin-bottom: 50px;
}
.cta_area .material_list table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 599px) {
  .cta_area .material_list table {
    width: 1000px;
  }
}
.cta_area .material_list th,
.cta_area .material_list td {
  border: 1px solid #000;
  padding: 8px;
  text-align: left;
}
.cta_area .material_list th {
  background-color: #d9e1f2;
  text-align: center;
}
.cta_area .material_list td {
  background-color: #ffffff;
}
.cta_area .material_list .material_list_check {
  text-align: center;
}

.top_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 45px;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 599px) {
  .top_btn {
    bottom: 90px;
    right: 23px;
  }
}

.top_btn.active {
  opacity: 1;
}

.cta_sp {
  background-color: #fff;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 10000;
}
.cta_sp .cta_sp_btn {
  background-image: linear-gradient(90deg, rgb(209, 0, 0), rgb(129, 0, 0));
  padding: 15px 0;
  width: 90%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  box-shadow: 5px 5px 5px 0px #c3c3c3;
  display: block;
  margin: 0 auto;
}
.cta_sp .cta_sp_btn:hover {
  opacity: 1;
}

.red_arrow {
  width: 150px;
  margin: 0 auto 100px;
}
@media (max-width: 599px) {
  .red_arrow {
    margin-bottom: 50px;
  }
}

#problem_anker,
#solution_anker,
#proposal_anker,
#tech_anker,
#comp_anker,
#industry_anker,
#voice_anker,
#faq_anker,
#contact_anker {
  padding-top: 50px;
  margin-top: -50px;
}

#works_anker {
  padding-top: 140px;
  margin-top: -140px;
}

.thanks {
  padding-top: 200px;
}
.thanks .contact_cont h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}
.thanks .contact_cont p {
  text-align: center;
  margin-bottom: 30px;
}

.common_btn a {
  background-color: #d00400;
  padding: 15px 0;
  width: 450px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  border-radius: 5px;
  box-shadow: 5px 5px 5px 0px #c3c3c3;
  display: block;
  margin: 0 auto;
}
.common_btn a:hover {
  opacity: 1;
  transform: translateY(5px);
  box-shadow: none;
}

/* header */
header {
  position: fixed;
  top: 0;
  background-color: #fff;
  width: 100%;
  z-index: 1000;
}
header .header_row .header_logos {
  margin-left: 5%;
  padding: 15px 0;
}
@media (max-width: 768px) {
  header .header_row .header_logos {
    margin-left: 2.5%;
    padding: 10px 0;
  }
  header .header_row .header_logos .row {
    align-items: center;
  }
  header .header_row .header_logos h1 {
    line-height: 1;
  }
}
header .header_row .header_logos .header_logo {
  max-width: 220px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  header .header_row .header_logos .header_logo {
    margin-right: 10px;
    width: 180px;
  }
}
header .header_row .header_logos .header_logo img {
  vertical-align: baseline;
}
header .header_row .header_logos .header_logos_text {
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #000;
}
header .header_row .header_logos .header_logos_text p {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 768px) {
  header .header_row .header_logos .header_logos_text p {
    font-size: 12px;
  }
}
header .header_contact {
  background-color: #d00400;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
@media (max-width: 768px) {
  header .header_contact {
    display: none;
  }
}
header .header_contact::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25px;
  z-index: -1;
  width: 50px;
  background-color: #d00400;
  transform: skewX(-30deg);
  transition: 0.3s;
  z-index: 2;
}
header .header_contact::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  z-index: -1;
  width: 50px;
  background-color: #808080;
  transform: skewX(-30deg);
  transition: 0.3s;
  z-index: 1;
}
header .header_contact:hover {
  background-color: #fff;
  cursor: pointer;
}
header .header_contact:hover a {
  background-color: #fff;
  color: #d00400;
  opacity: 1;
}
header .header_contact:hover::before {
  background-color: #fff;
}
header .header_contact:hover::after {
  background-color: #d00400;
}
header .header_contact a {
  background-color: #d00400;
  padding: 5px 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  width: 350px;
  display: block;
}

.menu_btn {
  display: none;
}
@media (max-width: 768px) {
  .menu_btn {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 4000;
    background-color: #000;
  }
  .menu_btn span {
    display: inline-block;
    height: 4px;
    width: 35px;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .menu_btn span:nth-child(1) {
    top: 20px;
  }
  .menu_btn span:nth-child(2) {
    top: 30px;
  }
  .menu_btn span:nth-child(3) {
    top: 40px;
  }
}

.nav_sp {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 500;
  transition: 500ms ease-out;
  padding: 150px 0 0;
  text-align: center;
}
.nav_sp li {
  margin-bottom: 30px;
}
.nav_sp li a {
  color: #fff;
  font-size: 18px;
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .nav_sp {
  opacity: 1 !important;
  left: 0 !important;
}

/* footer */
footer {
  background-color: #f8f5f5;
}
footer .footer_text {
  background-color: #d00400;
  padding: 30px 0;
}
footer .footer_text img {
  width: 900px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 1200px) {
  footer .footer_text img {
    width: 90%;
  }
}
footer .footer_logo {
  width: 250px;
  margin: 0 auto 30px;
  margin-top: 50px;
}
@media (max-width: 599px) {
  footer .footer_logo {
    width: 200px;
    margin-top: 30px;
  }
}
footer .footer_row {
  width: 1000px;
  margin: 0 auto 50px;
}
@media (max-width: 1200px) {
  footer .footer_row {
    width: 90%;
    margin-bottom: 30px;
  }
}
footer .footer_row .footer_img {
  width: 44%;
}
@media (max-width: 599px) {
  footer .footer_row .footer_img {
    width: 80%;
    margin: 0 auto 30px;
  }
}
footer .footer_info_wrap {
  width: 52%;
}
@media (max-width: 599px) {
  footer .footer_info_wrap {
    width: 100%;
  }
}
footer .footer_info_wrap .footer_info_row {
  margin-bottom: 20px;
}
footer .footer_info_wrap .footer_info_row .footer_info_left {
  width: 25%;
}
footer .footer_info_wrap .footer_info_row .footer_info_right {
  width: 75%;
}
footer .footer_info_wrap .footer_info_row .footer_info_right p {
  font-weight: normal;
}
footer .footer_read {
  margin-top: 30px;
  font-size: 20px;
}
@media (max-width: 599px) {
  footer .footer_read {
    font-size: 18px;
    text-align: center;
  }
}
footer .footer_btn {
  padding-bottom: 50px;
}
@media (max-width: 599px) {
  footer .footer_btn {
    padding-bottom: 30px;
  }
}
footer .footer_btn a {
  background-color: #fff;
  border: 1px solid #1a1a1a;
  padding: 10px 20px;
  padding-right: 0;
  font-size: 20px;
  width: 450px;
  margin: 0 auto;
  display: block;
  position: relative;
}
@media (max-width: 599px) {
  footer .footer_btn a {
    width: 90%;
  }
}
footer .footer_btn a::before, footer .footer_btn a::after {
  right: 0.5em;
  transition: 0.3s;
}
footer .footer_btn a::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0.9em;
  transform: translateY(calc(50% - 5px)) rotate(45deg);
  width: 16px;
  height: 1px;
  background-color: #1a1a1a;
  transition: 0.3s;
}
footer .footer_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background-color: #1a1a1a;
  transition: 0.3s;
}
footer .footer_btn a:hover {
  opacity: 1;
}
footer .footer_btn a:hover::before {
  right: 0.4em;
}
footer .footer_btn a:hover::after {
  right: 0.5em;
}
footer .footer_bg {
  background-color: #000;
  padding: 30px 0;
}
footer .footer_bg .footer_bg_text {
  margin-bottom: 10px;
  text-align: center;
}
footer .footer_bg .footer_bg_text p {
  color: #fff;
}
footer .footer_bg h3 {
  font-size: 32px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  footer .footer_bg h3 {
    font-size: 22px;
  }
}
footer .footer_bg .footer_bg_address {
  text-align: center;
}
footer .footer_bg .footer_bg_address p, footer .footer_bg .footer_bg_address a {
  color: #fff;
}
footer .copyright {
  background-color: #d00400;
  text-align: center;
  padding: 10px 0;
}
@media (max-width: 599px) {
  footer .copyright {
    padding-bottom: 90px;
  }
}
footer .copyright p {
  font-size: 12px;
  color: #fff;
}
@media (max-width: 599px) {
  footer .copyright p {
    font-size: 10px;
  }
}

/* top */
.wrapper {
  overflow: hidden;
}

.mv {
  margin-top: 76px;
}
@media (max-width: 599px) {
  .mv {
    margin-top: 60px;
  }
}

.nav_menu {
  background-color: #000;
  padding: 30px 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .nav_menu {
    display: none;
  }
}
.nav_menu li {
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #fff;
}
.nav_menu li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.nav_menu li a {
  color: #fff;
}
.nav_menu.active {
  padding: 10px 0;
  position: fixed;
  top: 76px;
  width: 100%;
  z-index: 1000;
}

.problem {
  background-image: linear-gradient(180deg, rgb(129, 0, 0), rgb(209, 0, 0));
}
.problem.active {
  margin-top: 84px;
}
@media (max-width: 768px) {
  .problem.active {
    margin-top: 0;
  }
}
.problem .inner {
  width: 1200px;
}
@media (max-width: 1200px) {
  .problem .inner {
    width: 90%;
  }
}

.solution {
  padding-top: 0;
  background: url(../images/solution_bg_pc.png) top/cover;
  padding-bottom: 0;
}
.solution .solution_ttl {
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .solution .solution_ttl {
    width: 100%;
  }
}
.solution .solution_proposal_img {
  transform: translateY(45%);
}
.solution .solution_movie {
  margin-top: 10%;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
.solution .solution_movie video {
  width: 100%;
}

.proposal {
  background: url(../images/proposal_bg_pc.jpg) top/cover;
  padding-top: 200px;
}
@media (max-width: 599px) {
  .proposal {
    padding-top: 60px;
    background: url(../images/proposal_bg_sp.jpg) top/cover;
  }
}
.proposal .proposal_row {
  margin-bottom: 50px;
}
.proposal .proposal_row .proposal_img {
  width: 48%;
}
@media (max-width: 599px) {
  .proposal .proposal_row .proposal_img {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.proposal .proposal_row .proposal_text {
  width: 50%;
}
@media (max-width: 599px) {
  .proposal .proposal_row .proposal_text {
    width: 100%;
  }
}
.proposal .proposal_row .proposal_text ul li {
  margin-bottom: 20px;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}
.proposal .proposal_row .proposal_text ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, rgb(209, 0, 0), rgb(129, 0, 0));
}
.proposal .proposal_list .proposal_box {
  width: 48%;
  margin-bottom: 4%;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 5px 5px 0px 0px #810000;
}
@media (max-width: 599px) {
  .proposal .proposal_list .proposal_box {
    width: 100%;
    margin-bottom: 30px;
  }
}
.proposal .proposal_list .proposal_box .proposal_icon img {
  width: 100px;
  margin: 0 auto 30px;
  display: block;
}
@media (max-width: 599px) {
  .proposal .proposal_list .proposal_box .proposal_icon img {
    width: 80px;
  }
}
.proposal .proposal_list .proposal_box .proposal_icon h3 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  color: #d00400;
}
@media (max-width: 599px) {
  .proposal .proposal_list .proposal_box .proposal_icon h3 {
    font-size: 32px;
  }
}
.proposal .proposal_list .proposal_box.proposal_box03 .proposal_icon img {
  width: 90px;
}
.proposal .proposal_list .proposal_box.proposal_box04 .proposal_icon img {
  width: 105px;
}

.tech {
  padding-top: 0;
  background: url(../images/tech_bg_pc.png) center/cover no-repeat;
}
@media (max-width: 768px) {
  .tech {
    padding-bottom: 40px;
  }
}
.tech .tech_ttl {
  width: 55%;
  margin: 0 auto 100px;
}
@media (max-width: 768px) {
  .tech .tech_ttl {
    width: 90%;
    margin-bottom: 30px;
  }
}
.tech .tech_item {
  width: 60%;
  position: relative;
  margin-bottom: 150px;
  min-width: 768px;
}
@media (max-width: 768px) {
  .tech .tech_item {
    min-width: 100%;
    width: 100%;
    margin-bottom: 0;
  }
}
.tech .tech_item .tech_box {
  position: absolute;
  top: 50%;
  right: -55%;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 30px 40px;
  box-shadow: 0px 0px 15px 5px #bab5b5;
  width: 90%;
  min-width: 690px;
}
@media (max-width: 768px) {
  .tech .tech_item .tech_box {
    position: relative;
    top: unset;
    right: unset;
    transform: translateY(-70px);
    margin: auto;
    padding: 30px 20px;
    min-width: auto;
  }
}
.tech .tech_item .tech_box .tech_box_item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px dashed #808080;
}
.tech .tech_item .tech_box .tech_box_item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.tech .tech_item .tech_box .tech_box_item .tech_box_icon {
  width: 50px;
  margin-right: 2%;
}
@media (max-width: 768px) {
  .tech .tech_item .tech_box .tech_box_item .tech_box_icon {
    width: 40px;
  }
}
.tech .tech_item .tech_box .tech_box_item .tech_box_text {
  width: calc(98% - 50px);
}
@media (max-width: 768px) {
  .tech .tech_item .tech_box .tech_box_item .tech_box_text {
    width: calc(98% - 40px);
  }
}
.tech .tech_item .tech_box .tech_box_item .tech_box_text h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .tech .tech_item .tech_box .tech_box_item .tech_box_text h3 {
    font-size: 18px;
  }
}
.tech .tech_item.tech_item02 {
  margin-left: auto;
}
.tech .tech_item.tech_item02 .tech_box {
  left: -55%;
  right: auto;
}
@media (max-width: 768px) {
  .tech .tech_item.tech_item02 .tech_box {
    left: auto;
  }
}

.comp {
  background: url(../images/comp_bg.jpg) top/cover no-repeat;
  padding: 0;
  height: 760px;
}
@media (max-width: 599px) {
  .comp {
    height: 600px;
  }
}
.comp .comp_box {
  padding: 50px;
  background-color: #fff;
  position: relative;
  z-index: 30;
  box-shadow: 5px 5px 20px 0px #696969;
  transform: translateY(-60px);
}
@media (max-width: 599px) {
  .comp .comp_box {
    padding: 20px;
    transform: translateY(-40px);
  }
}
.comp .comp_box .comp_ttl {
  text-align: center;
  margin-bottom: 50px;
}
.comp .comp_box .comp_ttl p {
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .comp .comp_box .comp_ttl p {
    font-size: 24px;
  }
}
.comp .comp_box .comp_ttl h2 {
  font-size: 96px;
  color: #d00400;
  line-height: 1;
  font-weight: 900;
}
@media (max-width: 599px) {
  .comp .comp_box .comp_ttl h2 {
    font-size: 36px;
  }
}
.comp .comp_box .comp_table table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 599px) {
  .comp .comp_box .comp_table table {
    width: 600px;
  }
}
.comp .comp_box .comp_table table td,
.comp .comp_box .comp_table table th {
  width: 13%;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 599px) {
  .comp .comp_box .comp_table table td,
  .comp .comp_box .comp_table table th {
    line-height: 1.2;
    font-size: 12px;
    padding: 15px 10px;
  }
}
.comp .comp_box .comp_table table td.table_red,
.comp .comp_box .comp_table table th.table_red {
  background-color: #d00400;
  color: #fff;
  font-weight: bold;
  width: 15%;
  font-size: 16px;
  box-shadow: 5px 5px 5px 0px #bab5b5;
}
.comp .comp_box .comp_table table td.table_red img,
.comp .comp_box .comp_table table th.table_red img {
  width: 35px;
}
@media (max-width: 599px) {
  .comp .comp_box .comp_table table td.table_red img,
  .comp .comp_box .comp_table table th.table_red img {
    width: 25px;
  }
}
.comp .comp_box .comp_table table td.table_red_text,
.comp .comp_box .comp_table table th.table_red_text {
  color: #fff;
  font-size: 36px;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 599px) {
  .comp .comp_box .comp_table table td.table_red_text,
  .comp .comp_box .comp_table table th.table_red_text {
    font-size: 20px;
  }
}
.comp .comp_box .comp_table table td.table_gold,
.comp .comp_box .comp_table table th.table_gold {
  background-color: #f1ebe4;
}
.comp .comp_box .comp_table table td img,
.comp .comp_box .comp_table table th img {
  width: 30px;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .comp .comp_box .comp_table table td img,
  .comp .comp_box .comp_table table th img {
    width: 20px;
  }
}
@media (max-width: 599px) {
  .comp .comp_box .comp_table table td p,
  .comp .comp_box .comp_table table th p {
    font-size: 12px;
  }
}
.comp .comp_box .comp_table table tr:last-child td,
.comp .comp_box .comp_table table tr:last-child th {
  padding-bottom: 30px;
}
.comp .comp_box .comp_table table th {
  font-size: 20px;
}
@media (max-width: 599px) {
  .comp .comp_box .comp_table table th {
    font-size: 14px;
  }
}

.industry {
  padding-top: 150px;
}
.industry .industry_ttl {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.industry .industry_ttl img {
  width: 500px;
  display: block;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .industry .industry_ttl img {
    width: 100%;
    top: -65px;
  }
}
.industry .industry_ttl h2 {
  font-size: 78px;
  color: #d00400;
}
@media (max-width: 599px) {
  .industry .industry_ttl h2 {
    font-size: 39px;
    line-height: 1.2;
  }
}
.industry .industry_list {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .industry .industry_list {
    width: 100%;
  }
}
.industry .industry_list .industry_box {
  background-color: #f1ebe4;
  padding: 30px 20px;
  width: 24%;
  margin-bottom: 2%;
  border-radius: 3px;
}
@media (max-width: 599px) {
  .industry .industry_list .industry_box {
    width: 48%;
    margin-bottom: 4%;
    padding: 20px 10px;
  }
}
.industry .industry_list .industry_box .industry_icon {
  text-align: center;
  margin-bottom: 30px;
}
.industry .industry_list .industry_box .industry_icon img {
  height: 80px;
  width: auto;
}
.industry .industry_list .industry_box h3 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .industry .industry_list .industry_box h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.industry .industry_list .industry_box ul li {
  text-indent: -1rem;
  padding-left: 1rem;
}
@media (max-width: 599px) {
  .industry .industry_list .industry_box ul li {
    font-size: 14px;
    text-indent: -0.8rem;
    padding-left: 0.8rem;
  }
}

.voice {
  background: url(../images/voice_bg.png) top/cover no-repeat;
}
@media (max-width: 599px) {
  .voice {
    background: #f8f5f5;
  }
}
.voice .voice_ttl {
  margin-bottom: 50px;
}
.voice .voice_ttl .voice_ttl_text {
  margin-right: 1%;
  text-align: center;
}
.voice .voice_ttl .voice_ttl_text p {
  font-size: 32px;
  font-family: "Zen Old Mincho", system-ui;
}
@media (max-width: 599px) {
  .voice .voice_ttl .voice_ttl_text p {
    font-size: 20px;
  }
}
.voice .voice_ttl .voice_ttl_text h2 {
  font-size: 56px;
  font-family: "Zen Old Mincho", system-ui;
}
@media (max-width: 599px) {
  .voice .voice_ttl .voice_ttl_text h2 {
    font-size: 28px;
    line-height: 1.4;
  }
}
.voice .voice_ttl .voice_ttl_img {
  width: 220px;
}
.voice .voice_cont {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .voice .voice_cont {
    width: 100%;
  }
}
.voice .voice_box {
  background-color: #fff;
  padding: 30px;
  box-shadow: 5px 5px 5px 0px #7c7c7c;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .voice .voice_box {
    padding: 20px;
  }
}
.voice .voice_box:last-child {
  margin-bottom: 0;
}
.voice .voice_box h3 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
  color: #d00400;
}
@media (max-width: 599px) {
  .voice .voice_box h3 {
    font-size: 24px;
  }
}
.voice .voice_box .voice_img {
  width: 40%;
}
@media (max-width: 599px) {
  .voice .voice_box .voice_img {
    width: 70%;
    margin: 0 auto 20px;
  }
}
.voice .voice_box .voice_text {
  width: 58%;
}
@media (max-width: 599px) {
  .voice .voice_box .voice_text {
    width: 100%;
  }
}

.voice_textarea {
  text-align: center;
  padding: 50px 0;
}
.voice_textarea p {
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .voice_textarea p {
    font-size: 18px;
  }
}
.voice_textarea h3 {
  font-size: 64px;
  color: #d00400;
  line-height: 1.2;
}
@media (max-width: 599px) {
  .voice_textarea h3 {
    font-size: 28px;
  }
}

.faq {
  background-color: #f1ebe4;
}
.faq .faq_ttl h2 {
  color: #1a1a1a;
}
.faq .faq_item {
  padding: 30px;
  background-color: #fff;
  box-shadow: 5px 5px 5px 0px #c3c3c3;
  margin-bottom: 30px;
  border-radius: 5px;
}
@media (max-width: 599px) {
  .faq .faq_item {
    padding: 20px;
  }
}
.faq .faq_item:last-child {
  margin-bottom: 0;
}
.faq .faq_item .question {
  position: relative;
  cursor: pointer;
}
.faq .faq_item .question p {
  font-size: 18px;
  position: relative;
}
.faq .faq_item .question p::after, .faq .faq_item .question p::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background-color: #1a1a1a;
  width: 20px;
  height: 4px;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .faq .faq_item .question p::after, .faq .faq_item .question p::before {
    right: 0;
    top: 47%;
  }
}
.faq .faq_item .question p::after {
  transform: rotate(90deg);
  right: 20px;
  top: 48%;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .faq .faq_item .question p::after {
    right: 10px;
    top: 45%;
  }
}
.faq .faq_item .question p.active::after {
  transform: rotate(0);
  top: 49%;
  right: 20px;
}
@media (max-width: 599px) {
  .faq .faq_item .question p.active::after {
    right: 10px;
  }
}
.faq .faq_item .answer {
  font-weight: 300;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 2px dashed #808080;
}

.contact .contact_cont form .form_item {
  margin-bottom: 30px;
}
.contact .contact_cont form .form_item .form_text {
  margin-bottom: 10px;
}
.contact .contact_cont form .form_item .form_input_check {
  margin-right: 20px;
}
.contact .contact_cont form .form_item .form_input input,
.contact .contact_cont form .form_item .form_input textarea {
  width: 100%;
  background-color: #f1ebe4;
  padding: 20px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
}
.contact .contact_cont form .form_item .form_input textarea {
  height: 300px;
}
.contact .contact_cont form .form_privacy a {
  text-decoration: underline;
  color: #d00400;
}
.contact .contact_cont form .form_submit {
  margin-top: 50px;
}
.contact .contact_cont form .form_submit input {
  width: 400px;
  margin: 0 auto;
  background-color: #d00400;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 5px 5px 5px 0px #7c7c7c;
  border: none;
  font-size: 22px;
  font-weight: bold;
  display: block;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .contact .contact_cont form .form_submit input {
    width: 100%;
  }
}
.contact .contact_cont form .form_submit input:hover {
  transform: translateY(5px);
  box-shadow: none;
}

.required_error_text {
  color: #d00400;
}

.privacy {
  margin-top: 150px;
}
.privacy .privacy_read {
  margin-bottom: 30px;
}
.privacy .privacy_item {
  margin-bottom: 30px;
}
.privacy .privacy_company {
  text-align: right;
  margin-bottom: 30px;
}

.fadein {
  opacity: 0;
  transform: translateY(6%);
}
.fadein.active {
  animation: 0.4s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 0.4s forwards 0.2s fadein;
}
@media (max-width: 599px) {
  .fadein2.active {
    animation: 0.4s forwards fadein;
  }
}

.fadein3 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein3.active {
  animation: 0.4s forwards 0.4s fadein;
}
@media (max-width: 599px) {
  .fadein3.active {
    animation: 0.4s forwards fadein;
  }
}

.fadein4 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein4.active {
  animation: 0.4s forwards 0.6s fadein;
}
@media (max-width: 599px) {
  .fadein4.active {
    animation: 0.4s forwards fadein;
  }
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.4s forwards leftin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.4s forwards rightin;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(6%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */