@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100&display=swap");
html {
  font-size: 62.5%;
}

body {
  color: #333333;
  font-family: 'Roboto','Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: none;
}

a {
  color: #333333;
  transition: all 0.2s;
}

a:hover {
  opacity: 0.5;
}

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

ul {
  list-style-type: square;
}

.text-center {
  text-align: center;
}

.pc {
  display: inline-block;
}

.sp {
  display: none;
}

/*--------------------
* anime
*--------------------*/
.invisible {
  visibility: hidden;
}

/*RtL*/
.fadeInDown {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*LtR*/
.fadeInDown_l {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fadeInDown_l;
  visibility: visible !important;
}

@keyframes fadeInDown_l {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*BtT*/
.fadeInDown_b {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fadeInDown_b;
  visibility: visible !important;
}

@keyframes fadeInDown_b {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* low-page RtL*/
.low-page-fadeInDown {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: .25s;
  animation-name: low-page-fadeInDown;
  visibility: visible !important;
}

@keyframes low-page-fadeInDown {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*KV*/
.vegas-animation-myKenburns {
  animation: myKenburns ease-out;
}

@keyframes myKenburns {
  0% {
    transform: scale(1.2) rotate(0.1deg);
  }
  100% {
    transform: scale(1) rotate(0.1deg);
  }
}

/*--------------------
* KV
*--------------------*/
header {
  height: 41px;
}

header > a:hover {
  opacity: 1;
}

.firstview-text {
  color: #fff;
  position: absolute;
  bottom: 13%;
  letter-spacing: 0.05em;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.9);
}

h1 {
  font-family: 'Roboto',sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 9rem;
  padding-bottom: 13px;
  letter-spacing: 1;
  line-height: 95px;
}

.firstview-text span {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: 'Noto Sans JP',sans-serif;
}

.firstview {
  overflow: hidden;
  background-size: cover;
  width: 100%;
  position: relative;
}

.wrapper {
  padding: 60px 45px 0 8.3%;
  height: 100vh;
  box-sizing: border-box;
}

.logo {
  width: 30rem;
  height: auto;
  margin-right: 16px;
  filter: drop-shadow(2px 2px 2px #666);
}

header > a {
  font-family: 'Hiragino Kaku Gothic W6 JIS2004',sans-serif;
  font-weight: 600;
  font-size: 1.9rem;
  letter-spacing: 0.14em;
  line-height: 41px;
  text-align: left;
  color: #fff;
  display: inline-block;
  position: relative;
}

#vegas {
  width: 100%;
  height: 100vh !important;
}

.lang {
  display: inline-block;
  color: #adadad;
  padding-left: 20px;
  letter-spacing: 0.02em;
  font-size: 1.3rem;
  vertical-align: middle;
}

.lang-selected {
  border-bottom: solid 1px #adadad;
  padding-bottom: 2px;
}

.lang li {
  display: inline-block;
  font-family: 'Hiragino Kaku Gothic W6 JIS2004',sans-serif;
  font-weight: 700;
}

.lang .slant {
  padding: 0 2px 0;
  color: #fff;
}

.lang span {
  font-family: 'Hiragino Kaku Gothic W6 JIS2004',sans-serif;
  font-weight: 700;
}

.lang a {
  color: #fff;
}

/*--------------------
* btn
*--------------------*/
.btn-trigger {
  appearance: none;
  position: fixed;
  top: 60px;
  right: 45px;
  width: 40px;
  height: 41px;
  padding: 0;
  border: none;
  z-index: 1000;
}

.btn-trigger span {
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.45s;
  transform-origin: left;
}

.btn-trigger span:first-of-type {
  top: 12px;
}

.btn-trigger span:nth-of-type(2) {
  bottom: 12px;
}

.btn-trigger.active span:first-of-type {
  transform: rotate(23deg);
  top: 12px;
}

.btn-trigger.active span:nth-of-type(2) {
  transform: rotate(-21deg);
  bottom: 12px;
}

.btn-trigger:before {
  content: "";
  position: absolute;
  top: -200%;
  left: 100%;
  width: 500px;
  height: 500px;
  background-color: #EF182D;
  background-color: #EF182D;
  transform-origin: 100% 0;
  transform: rotate(45deg);
}

.module--button-block {
  background: #000;
  border: 0;
  color: #FFF;
  padding: 1rem 10rem;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

/*--------------------
* menu
*--------------------*/
.menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  background-color: #0C0B0B;
  overflow: hidden;
}

.menu li {
  position: relative;
  opacity: 0;
}

.menu.active li {
  animation: fadeInRight .6s ease forwards;
  animation-delay: .25s;
}

.menu.active li:nth-of-type(2) {
  animation-delay: .3s;
}

.menu.active li:nth-of-type(3) {
  animation-delay: .35s;
}

.menu.active li:nth-of-type(4) {
  animation-delay: .40s;
}

.menu.active li:nth-of-type(5) {
  animation-delay: .45s;
}

.menu.active li:nth-of-type(6) {
  animation-delay: .50s;
}

.menu.active li:nth-of-type(7) {
  animation-delay: .55s;
}

.menu.active li:nth-of-type(8) {
  animation-delay: .60s;
}

.menu.active li:nth-of-type(9) {
  animation-delay: .65s;
}

.menu.active li:nth-of-type(10) {
  animation-delay: .70s;
}

.menu.active li:nth-of-type(11) {
  animation-delay: .75s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.menu-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  padding: 0 0 0 14%;
  box-sizing: border-box;
}

.menu li {
  padding-bottom: 30px;
  width: 55rem;
  position: relative;
}

.menu li::before {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 0px;
  width: 65%;
  height: 2px;
  background: #EF182D;
  display: block;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0, 1);
  opacity: 0.5;
}

.menu li:hover::before {
  transform-origin: right top;
  transform: scale(1, 1);
}

.menu-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 480px;
  width: 750px;
}

.menu-nav a {
  font-size: 5.6rem;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.menu-nav span {
  font-size: 1.6rem;
  display: block;
  margin-top: 8px;
  font-family: 'Noto Sans JP',sans-serif;
}

/*--------------------
* about
*--------------------*/
/*anime*/
main {
  position: relative;
  overflow: hidden;
  padding-bottom: 240px;
  box-sizing: border-box;
  display: block;
}

.section0 {
  margin-top: 160px;
}

h2 {
  font-family: Roboto;
  font-weight: bold;
  font-size: 5.6rem;
  letter-spacing: 0.05em;
  color: #EF182D;
  line-height: 47px;
  text-shadow:
    3px 3px 0 #FFF,
    -3px 3px 0 #FFF,
    -3px -3px 0 #FFF,
    3px -3px 0 #FFF;
}

section span {
  font-size: 3rem;
  margin-top: 23px;
  display: block;
  font-weight: 500;
  font-family: 'Noto Sans JP',sans-serif;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 32px;
  margin-top: 60px;
  padding: 0 8.3% 0;
  text-align: left;
}

/*--------------------
* manegement
*--------------------*/
.section-wrapper1 {
  padding-left: 14%;
  /*	360px;*/
  box-sizing: border-box;
}

.section1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 230px; */
  margin-top: 180px;
  position: relative;
  width: 100%;
}

.section1 > div {
  max-width: 36%;
  /*width: 570px;*/
}

.section1-pic {
  /* width: 45%; */
  width: 50%;
  min-width: 500px;
}

.section-text {
  margin: 0 auto;
  line-height: 32px;
  margin-top: 60px;
}

h3 {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: 'Noto Sans JP',sans-serif;
  margin-top: 30px;
  position: relative;
  margin-left: 10px;
  padding-left: 30px;
  /*右の余白*/
  color: #333;
  /*文字色*/
  border-left: solid 3px #333;
  /*左線*/
  line-height: 22px;
}

h3:first-of-type {
  margin-top: 70px;
}

.section-detail {
  padding: 16px 0 0 43px;
}

/*--------------------
* basic
*--------------------*/
.reverse {
  flex-direction: row-reverse;
  margin: 240px 0 0 0;
  padding: 0 14% 0 0;
}

.indent {
  padding-left: 30px;
}

/*--------------------
* glyphs
*--------------------*/
.glyph {
  position: relative;
  width: 100%;
}

.bg01 {
  left: 100%;
  top: 16%;
  transform: matrix(0.70711, -0.7071, 0.7071, 0.70711, 50, 700);
  position: absolute;
  width: 800px;
  height: 800px;
  margin-left: -400px;
  transform: rotate(-45deg);
  background-color: #F2F2F2;
  z-index: -2;
}

.bg02 {
  left: 0;
  top: 45%;
  transform: matrix(0.70711, -0.7071, 0.7071, 0.70711, 50, 700);
  position: absolute;
  width: 800px;
  height: 800px;
  margin-left: -400px;
  transform: rotate(-45deg) !important;
  background-color: #EF182D;
  z-index: -2;
}

.bg03 {
  left: 100%;
  top: 74%;
  transform: matrix(0.70711, -0.7071, 0.7071, 0.70711, 50, 700);
  position: absolute;
  width: 800px;
  height: 800px;
  margin-left: -400px;
  transform: rotate(-45deg);
  background-color: #CCC;
  z-index: -2;
}

/*
.glyphs-grey{
	position: absolute;
	right: 0;
    z-index: -2;
	width: 37%;
	top: 10%;
}
.glyphs-red{
	position: absolute;
	left: 0;
	z-index: -2;
	top: 40%;
}
.glyphs-black{
	position: absolute;
	right: 0;
    z-index: -2;
	top: 73%;
}
*/
/*--------------------
* footer
*--------------------*/
footer {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

footer a {
  color: #fff !important;
}

footer ul li span {
  display: block;
}

.footer-link {
  display: flex;
  list-style-type: none;
}

.footer-link li {
  width: 33.333333%;
  position: relative;
  overflow: hidden;
}

.footer-link div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-link p {
  font-family: Roboto;
  font-weight: bold;
  font-size: 2.7vw;
  letter-spacing: 0.05em;
}

.footer-link span {
  font-size: 1.5vw;
  margin-top: 4px;
  font-weight: 500;
  font-family: 'Noto Sans JP',sans-serif;
}

.footer-navi-area {
  padding: 160px 8.3% 60px;
  background-color: #0C0B0B;
}

.footer-navi {
  display: flex;
  justify-content: flex-start;
  list-style-type: none;
  flex-wrap: wrap;
  line-height: 30px;
}

.footer-navi li {
  margin-right: 30px;
}

.footer-navi li:last-child {
  margin-right: 0;
}

.footer-navi a {
  display: inline-block;
}

.footer-aside {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.2rem;
}

.footer-logo p {
  margin-top: 10px;
}

.footer-logo p:nth-of-type(2) {
  margin-top: 24px;
}

.footer-logo p:first-of-type {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: 'Noto Sans JP',sans-serif;
}

.order1 {
  order: 2;
}

.order1 a {
  display: block;
  text-align: right;
  padding-bottom: 10px;
}

.order2 {
  order: 3;
}

.order3 {
  order: 1;
}

/*--------------------
* access
*--------------------*/
.access_content {
  width: 80%;
  margin: 60px auto 0;
}

@media screen and (max-width: 750px) {
  .access_content {
    width: 100%;
  }
}

/*--------------------
* contact
*--------------------*/
.contact--form {
  width: 50%;
  margin: auto;
}

@media screen and (max-width: 750px) {
  .contact--form {
    width: 100%;
    margin: 0;
  }
}

.contact--form #mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: 0px;
}

.contact--form dl.define--form {
  display: flex;
}

@media screen and (max-width: 750px) {
  .contact--form dl.define--form {
    display: block;
  }
}

.contact--form dl.define--form dt {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  width: 20%;
  text-align: right;
  padding: 1.6rem;
  white-space: nowrap;
  margin-top: 10px;
}

@media screen and (max-width: 750px) {
  .contact--form dl.define--form dt {
    width: 100%;
    text-align: left;
    padding-bottom: 0;
    box-sizing: border-box;
  }
}

.contact--form dl.define--form dt .optional,
.contact--form dl.define--form dt .required {
  display: none;
}

.contact--form dl.define--form dd {
  font-family: "Montserrat", sans-serif;
  width: 80%;
  text-align: left;
  padding: 1.6rem;
}

@media screen and (max-width: 750px) {
  .contact--form dl.define--form dd {
    padding-top: .5rem;
    width: 100%;
    box-sizing: border-box;
  }
}

.contact--form dl.define--form dd .form__select,
.contact--form dl.define--form dd .form__textarea,
.contact--form dl.define--form dd .form__input {
  width: 100%;
  padding: .5rem;
}

.contact--form dl.define--form dd .error_blank {
  color: #f00;
  font-size: 1.6rem;
  margin-top: .5rem;
}

.contact--form .txt--notes-red {
  color: #f00;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: initial;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.contact--form .form__require:before {
  color: #f00;
  content: "*";
  display: inline-block;
  margin-right: 5px;
}

.contact--form div.mfp_err {
  clear: both;
  display: none;
  text-align: left;
  margin: 5px 0px 0px 0px;
  padding: 5px 0;
  color: #F00;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: normal;
  background-repeat: no-repeat;
  background-position: 0px 1px;
}

.contact--form .txt--notes-red {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.contact--form .txt--notes-red .form__input {
  width: 100%;
  padding: .5rem;
}

.contact--form .txt--notes-red .form__check {
  padding: .5rem;
}

.contact--form .form__require__link {
  border-bottom: 1px solid #f00;
  color: #f00;
  display: inline-block;
  margin-left: 5px;
}

/*--------------------
* thanks
*--------------------*/
.thanks-content {
  width: 80%;
  margin: 0 auto;
  line-height: 32px;
  margin-top: 60px;
}

@media screen and (max-width: 750px) {
  .thanks-content {
    width: 100%;
  }
}

.thanks-content p {
  margin-bottom: 60px;
}

/*--------------------
* low-page service
*--------------------*/
.l-firstview {
  background-image: url("../images/service@2x.jpg");
  background-size: cover;
  background-position: center;
  height: 40vh;
  position: relative;
  overflow: hidden;
}

.l-firstview .wrapper {
  height: 100%;
}

.l-firstview .firstview-text {
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.l-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/*01*/
.l-section1 {
  margin-top: 160px;
}

.l-section1 > div {
  display: flex;
}

.l-section1 > div > span {
  font-family: Roboto;
  font-weight: bold;
  font-size: 16rem;
  letter-spacing: 0.05em;
  color: #EF182D;
  line-height: 70px;
  margin-right: 80px;
}

.l-section1 img {
  margin-top: 60px;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 240px 0 40px;
  font-family: 'ヒラギノ角ゴ W4 JIS2004', sans-serif;
}

.breadcrumb li:last-child a {
  color: #EF182D !important;
}

.breadcrumb li:first-child:after {
  content: "\f105";
  font-family: FontAwesome;
  padding: 0 10px 0px;
}

/*--------------------
* low-page works
*--------------------*/
.l-work {
  background: url(../images/works@2x.jpg) center;
  background-size: cover;
}

.l-section2 {
  margin-top: 160px;
}

section .works-detail1 {
  margin-top: 30px;
  position: relative;
}

.l-section2 .works-detail1:nth-of-type(2) {
  margin-top: 60px;
}

.card {
  position: absolute;
  left: 0;
  bottom: 30px;
  background-color: #fff;
  width: calc(33.333% - 20px);
  height: 160px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Noto Sans JP', sans-serif;
}

.card p:first-child {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
  font-family: 'Noto Sans JP',sans-serif;
}

.card p:last-child {
  color: #ADADAD;
}

.works-list {
  display: flex;
  flex-wrap: wrap;
}

.card-list {
  background-color: #fff;
  width: calc(33.333% - 20px);
  height: 160px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Noto Sans JP', sans-serif;
  border: solid #E8E8E8 1px;
  margin: 30px 0 0 0;
}

.card-list p:first-child {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.25;
  font-family: 'Noto Sans JP',sans-serif;
}

.card-list p:last-child {
  color: #ADADAD;
}

.card-list:not(:nth-child(3n)) {
  margin-right: 30px;
}

.works-list2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

/*--------------------
* low-page company
*--------------------*/
.l-company {
  background: url(../images/company@2x.jpg) center;
  background-size: cover;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-top: 60px;
  font-family: 'ヒラギノ角ゴ W4 JIS2004', sans-serif;
}

table tr {
  border-top: solid 1px #E8E8E8;
  border-bottom: solid 1px #E8E8E8;
}

table th, table td {
  text-align: left;
  width: 25%;
  padding: 20px 0 20px 30px;
  line-height: 32px;
}

table th {
  font-weight: 500;
  font-family: 'Noto Sans JP';
}

table td {
  width: 100%;
}

.history {
  margin-top: 60px;
}

/*--------------------
* low-page message
*--------------------*/
.l-message {
  background: url(../images/message@2x.jpg) center;
  background-size: cover;
}

.name {
  text-align: right;
  margin-top: 50px;
}

.name span {
  font-size: 1.6rem;
  line-height: 28px;
  width: 270px;
  margin: 0 0 0 auto;
  text-align: left;
}

.name span:last-of-type {
  font-size: 2.2rem;
  margin-top: 0;
  width: 270px;
}

/*--------------------
* low-page access
*--------------------*/
.l-access {
  background: url(../images/access@2x.jpg) center;
  background-size: cover;
}

.gmap {
  margin-top: 60px;
}

.address {
  font-family: 'ヒラギノ角ゴ W4 JIS2004', sans-serif;
  line-height: 32px;
  margin-top: 30px;
}

.address a {
  color: #EF182D;
}

.address a:last-of-type {
  color: #333;
}

/*--------------------
* low-page recruit
*--------------------*/
.l-recruit {
  background: url(../images/recruit@2x.jpg) center;
  background-size: cover;
}

.recruit-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.recruit-card-list {
  background-color: #fff;
  width: calc(33.333% - 20px);
  height: 160px;
  padding: 30px;
  box-sizing: border-box;
  justify-content: space-between;
  border: solid #EF182D 3px;
  margin: 30px 0 0 0;
  display: flex;
  align-items: center;
}

.recruit-card-list:not(:nth-child(3n)) {
  margin-right: 30px;
}

.recruit-section-text {
  margin: 0;
  line-height: 32px;
  margin-top: 30px;
}

.recruit-section-text a {
  color: #EF182D;
}

.recruit-card-list p:first-child {
  font-weight: bold;
  font-size: 7.2rem;
  line-height: 160px;
  color: #EF182D;
  margin-right: 20px;
}

.recruit-card-list p:last-child {
  width: 240px;
  line-height: 22px;
}

/*--------------------
* low-page contact
*--------------------*/
.l-contact {
  background: url(../images/others@2x.jpg) center;
  background-size: cover;
}

.form {
  max-width: 770px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.form-body {
  margin-top: 60px;
}

.form-parts {
  appearance: none;
  box-sizing: border-box;
  border: solid 1px #E8E8E8;
  background-color: #fff;
}

.form-parts__text {
  width: 100%;
  padding: 20px;
  color: #333;
  font-size: 1.6rem;
  transition: all .3s;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-title {
  margin-bottom: 18px;
  font-weight: 500;
  font-family: 'Noto Sans JP',sans-serif;
}

.form-item {
  margin-bottom: 30px;
}

.caution {
  display: inline-block;
  width: 30px;
  margin-left: 15px;
  color: #EF182D;
  text-align: center;
  font-size: 1.1rem;
  margin-top: 0;
}

.form-detail input[type='text']:focus, .form-detail input[type='email']:focus {
  border: 1px solid #da3c41;
  outline: none;
  transition: all .3s;
}

.form-detail textarea:focus {
  border: 1px solid #da3c41;
  outline: none;
  transition: all .3s;
}

input::-webkit-input-placeholder {
  color: #ADADAD;
  font-family: 'Hiragino Kaku Gothic W4 JIS2004',sans-serif;
}

.btn-submit {
  appearance: none;
  width: 222px;
  height: 60px;
  border: none;
  font-size: 2.2rem;
  padding: 0.3em 1em;
  transition: .2s;
  color: #fff;
  background: #0C0B0B;
  cursor: pointer;
  border-radius: 0;
}

.btn-submit:hover {
  background: #EF182D;
}

.btn-submit::after {
  content: none;
}

input, textarea {
  font-family: 'Hiragino Kaku Gothic W4 JIS2004',sans-serif;
}

#thxMessage {
  text-align: center;
  margin-top: 60px;
}

/*--------------------
* low-page Privacypolicy
*--------------------*/
.l-privacypolicy {
  background: url(../images/others@2x.jpg) center;
  background-size: cover;
}

.priv-body {
  margin-top: 60px;
  font-family: 'ヒラギノ角ゴ W4 JIS2004', sans-serif;
  line-height: 32px;
}

.priv-body h3 {
  margin: 0;
  padding: 0;
  border-left: none;
}

.priv-body p {
  margin-top: 30px;
}

.priv-body a {
  color: #EF182D;
}

/*--------------------
* low-page 404
*--------------------*/
.l-404 {
  background: url(../images/others@2x.jpg) center;
  background-size: cover;
}

@media screen and (max-width: 1300px) {
  .l-wrapper {
    padding: 0 8.3%;
  }
}

@media screen and (max-width: 1000px) {
  .firstview h1 {
    padding-right: 45px;
  }
  .section-wrapper1 {
    padding: 0 8.3%;
  }
  .section1-pic {
    margin-top: 60px;
    width: 100%;
    min-height: 1px;
  }
  .reverse {
    padding: 0 8.3%;
  }
  .bg01 {
    top: 22%;
    margin-left: -200px;
  }
  .bg02 {
    top: 48%;
    margin-left: -600px;
  }
  .bg03 {
    margin-left: -200px;
  }
  .recruit-card-list {
    width: calc(50% - 15px);
  }
  .recruit-card-list:not(:nth-child(2n)) {
    margin-right: 30px;
  }
  .recruit-card-list:not(:nth-child(3n)) {
    margin-right: none;
  }
  .recruit-card-list:nth-child(2n) {
    margin-right: 0px;
  }
  .section1 {
    display: flex;
    flex-direction: column;
    margin-top: 160px;
    position: relative;
    width: 100%;
    align-items: stretch;
  }
  .section1 > div {
    max-width: 100%;
  }
}

@media screen and (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 750px) {
  html {
    height: 100%;
  }
  body {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    height: 100%;
  }
  .firstview {
    height: 100%;
  }
  #vegas {
    height: 100% !important;
  }
  main {
    padding: 0 20px 160px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
  .wrapper {
    padding: 30px 20px 0;
  }
  header > a {
    letter-spacing: 0.15em;
  }
  .lang {
    font-size: 1rem;
  }
  .lang-selected {
    padding-bottom: 0;
  }
  h1 {
    font-size: 6.4rem;
    line-height: 64px;
    padding-bottom: 5px;
    letter-spacing: 0.025em;
  }
  .firstview h1 {
    padding-right: 20px;
    font-size: 6rem;
  }
  .firstview-text span {
    font-size: 2rem;
  }
  .firstview-text span.firstview-text-sub {
    font-size: 1.7rem;
  }
  .logo {
    width: 20rem;
    height: auto;
    margin-right: 9px;
  }
  header > a {
    font-size: 1.3rem;
    line-height: 30px;
  }
  .btn-trigger {
    width: 26px;
    transform: none;
    top: 36px;
    right: 20px;
    height: 16px;
    padding: 0;
  }
  .btn-trigger span {
    width: 26px;
  }
  .btn-trigger span:first-of-type {
    top: 1px;
  }
  .btn-trigger span:last-of-type {
    bottom: 1px;
  }
  .btn-trigger:before {
    width: 150px;
    height: 150px;
    top: 10px;
    left: 105%;
  }
  .btn-trigger.active span:first-of-type {
    transform: rotate(33deg);
    top: 0px;
  }
  .btn-trigger.active span:nth-of-type(2) {
    transform: rotate(-33deg);
    bottom: 0px;
  }
  /*--------------------
  * sp menu
  *--------------------*/
  .menu-wrapper {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    padding: 0 40px 0 40px;
    box-sizing: border-box;
  }
  .menu-nav {
    width: 100%;
    height: auto;
  }
  .menu-nav a {
    font-size: 2rem;
  }
  .menu-nav span {
    font-size: 1.2rem;
    display: block;
    margin-top: 0px;
  }
  .menu li {
    padding-bottom: 15px;
    width: 100%;
  }
  .menu li::before {
    bottom: 22%;
    width: 75%;
  }
  /*--------------------
  * sp about
  *--------------------*/
  .section0 {
    margin-top: 80px;
  }
  h2 {
    font-family: Roboto;
    font-weight: bold;
    font-size: 4rem;
    letter-spacing: 0.05em;
    color: #EF182D;
    line-height: 36px;
    text-align: center;
  }
  section span {
    font-size: 2rem;
    margin-top: 12px;
    display: block;
    font-weight: 500;
    font-family: 'Noto Sans JP',sans-serif;
    text-align: center;
  }
  .about-text {
    margin-top: 40px;
    padding: 0;
  }
  .section1 {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    position: relative;
    width: 100%;
    align-items: initial;
  }
  .section-wrapper1 {
    padding-left: 0;
    padding-right: 0;
  }
  .section1 > div {
    max-width: 100%;
  }
  .section-text {
    margin: 0 auto;
    line-height: 1.75;
    margin-top: 40px;
  }
  h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 30px;
    position: relative;
    margin-left: 10px;
    padding-left: 20px;
    color: #333;
    border-left: solid 2px #333;
    line-height: 18px;
  }
  h3:first-of-type {
    margin-top: 30px;
  }
  .section-detail {
    padding: 10px 0 0 33px;
  }
  .section1-pic {
    width: 100%;
    margin-top: 30px;
    object-fit: cover;
    min-width: inherit;
  }
  .reverse {
    padding: 0;
  }
  .bg01 {
    top: 26%;
    margin-left: -50px;
  }
  .bg02 {
    top: 50%;
    margin-left: -800px;
  }
  .bg03 {
    top: 80%;
    margin-left: -50px;
  }
  /*--------------------
   * sp footer
   *--------------------*/
  .footer-link {
    display: flex;
    flex-direction: column;
  }
  .footer-link li {
    width: 100%;
  }
  .footer-link p {
    font-family: Roboto;
    font-weight: bold;
    font-size: 10vw;
    letter-spacing: 0.05em;
    line-height: 1.1;
  }
  .footer-link span {
    font-size: 4.2vw;
    margin-top: 0px;
    font-weight: 500;
  }
  .footer-navi-area {
    padding: 80px 20px 40px;
  }
  .footer-aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 0;
    font-size: 1.1rem;
    align-items: initial;
  }
  .order1 {
    order: 2;
    margin-top: 40px;
  }
  .order1 a {
    text-align: left;
    padding-bottom: 6px;
  }
  .order2 {
    order: 3;
    margin-top: 80px;
  }
  .order3 {
    order: 1;
  }
  .footer-logo p {
    margin-top: 3px;
  }
  .footer-logo p:first-of-type {
    font-size: 1.5rem;
    margin-top: 0;
  }
  .footer-logo p:nth-of-type(2) {
    margin-top: 10px;
  }
  /*--------------------
   * sp lowpage service
   *--------------------*/
  .l-firstview {
    background-image: url(../images/service_sp@2x.jpg);
    background-size: cover;
    background-position: center;
  }
  .l-firstview .firstview-text {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .l-wrapper {
    padding: 0 20px 0;
  }
  .l-section1 {
    margin-top: 80px;
  }
  .l-section1 > div > span {
    font-size: 8.8rem;
    line-height: 70px;
    margin-right: 30px;
    margin-top: 0;
    position: absolute;
  }
  .l-section1 .l-section-text {
    width: 100%;
  }
  .l-section-text h2, .l-section-text span {
    margin-left: 100px;
  }
  .l-section1 img {
    margin-top: 30px;
    object-fit: cover;
  }
  .breadcrumb {
    display: flex;
    list-style: none;
    padding: 160px 0 30px;
  }
  /*--------------------
   * sp lowpage work
   *--------------------*/
  .l-work {
    background-image: url(../images/work_sp@2x.jpg);
  }
  .l-section2 .works-detail1:nth-of-type(2) {
    margin-top: 40px;
  }
  section .works-detail1 {
    margin-top: 20px;
  }
  .l-section2 {
    margin-top: 80px;
  }
  .l-section2 .l-section-text h2, .l-section2 .l-section-text span {
    margin-left: 0px;
  }
  .card {
    bottom: 20px;
    width: calc(50% - 10px);
    height: 140px;
    padding: 20px;
  }
  .card p:first-child {
    font-size: 1.7rem;
    line-height: 1.5;
  }
  .card p:last-child {
    font-size: 1.2rem;
  }
  .card-list {
    background-color: #fff;
    width: calc(50% - 10px);
    height: 140px;
    padding: 20px;
    border: solid #E8E8E8 1px;
    margin: 20px 0 0 0;
  }
  .card-list:not(:nth-child(2n)) {
    margin-right: 20px;
  }
  .card-list:not(:nth-child(3n)) {
    margin-right: none;
  }
  .card-list:nth-child(2n) {
    margin-right: 0px;
  }
  .card-list p:first-child {
    font-size: 1.7rem;
    line-height: 1.5;
  }
  .card-list p:last-child {
    font-size: 1.2rem;
  }
  /*--------------------
   * sp lowpage company
   *--------------------*/
  .l-company {
    background-image: url(../images/company_sp@2x.jpg);
  }
  table {
    margin-top: 40px;
  }
  table th {
    white-space: nowrap;
    width: initial;
    padding: 15px 0 15px 15px;
    line-height: 32px;
  }
  
  table td {
    width: 70%;
    padding: 15px 0 15px 15px;
    line-height: 32px;
  }

  .history {
    margin-top: 40px;
  }
  .indent {
    padding-left: 26px;
  }
  /*--------------------
   * sp lowpage message
   *--------------------*/
  .l-message {
    background-image: url(../images/message_sp@2x.jpg);
  }
  .name {
    margin-top: 40px;
  }
  .name span {
    font-size: 1.5rem;
    line-height: 28px;
    width: 160px;
    margin: 0 0 0 auto;
    text-align: left;
  }
  .name span:last-of-type {
    font-size: 1.7rem;
    width: 205px;
  }
  /*--------------------
   * sp lowpage access
   *--------------------*/
  .l-access {
    background-image: url(../images/access_sp@2x.jpg);
  }
  .gmap {
    margin-top: 40px;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    /*16:9 =56.25 4:3=75％*/
    position: relative;
  }
  .gmap iframe, .gmap object, .gmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /*--------------------
   * sp lowpage recruit
   *--------------------*/
  .l-recruit {
    background-image: url(../images/recruit_sp@2x.jpg);
  }
  .recruit-list {
    margin-top: 20px;
  }
  .recruit-card-list {
    min-width: 100%;
    height: 130px;
    padding: 20px;
    border: solid #EF182D 3px;
    margin: 20px 0 0 0;
  }
  .recruit-card-list:not(:nth-child(3n)) {
    margin-right: 0px;
  }
  .recruit-card-list p:first-child {
    font-size: 6rem;
    line-height: 130px;
  }
  .recruit-card-list p:last-child {
    width: 550px;
    line-height: 1.5;
  }
  /*--------------------
   * sp lowpage contact
   *--------------------*/
  .l-contact {
    background-image: url(../images/others_sp@2x.jpg);
  }
  .form-body {
    margin-top: 40px;
  }
  .form-title {
    margin-bottom: 10px;
  }
  .form-parts__text {
    padding: 15px;
    font-size: 1.5rem;
  }
  .btn-submit {
    width: 50%;
    height: 46px;
    font-size: 1.7rem;
    padding: 0.3em 1em;
  }
  /*--------------------
   * sp lowpage privacypolicy
   *--------------------*/
  .l-privacypolicy {
    background-image: url(../images/others_sp@2x.jpg);
  }
  .priv-body {
    margin-top: 40px;
    font-family: 'ヒラギノ角ゴ W4 JIS2004', sans-serif;
    line-height: 32px;
  }
  /*--------------------
   * sp lowpage 404
   *--------------------*/
  .l-404 {
    background-image: url(../images/others_sp@2x.jpg);
  }
}

@media screen and (max-width: 396px) {
  .l-privacypolicy .firstview-text {
    top: 50%;
  }
}

@media screen and (max-width: 350px) {
  .menu li {
    width: 50%;
    padding-right: 10px;
  }
  .menu-nav {
    height: 405px;
  }
  .firstview h1 {
    padding-right: 10px;
  }
  .firstview-text span.firstview-text-sub {
    font-size: 4.7vw;
  }
  h2 {
    font-size: 3.5rem;
  }
  .works-detail1 img {
    width: 100%;
  }
  .card-list {
    min-width: 100%;
  }
  .l-privacypolicy h1 {
    padding-bottom: 0;
    font-size: 4.4rem;
  }
}
/*# sourceMappingURL=style.css.map */