@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

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

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 5px 10px;
  background-color: #FFFFFF;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    margin-right: auto;
  }
}

.header__logo-image {
  width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
  text-align: center;
}

.header__item {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: inherit;
  margin-left: 10px;
  margin-right: 10px;
}

.header__link {
  font-size: 14px;
  font-weight: 24px;
  color: #2B2B21;
  height: inherit;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 19px;
  right: 15px;
  width: 25px;
  height: 15px;
  cursor: pointer;
}

.hamburger.is-active {
  right: 20px;
}

.hamburger span {
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2B3F2F;
  transition: transform 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
}

.drawer-menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 10px;
}

.drawer-menu__link {
  font-size: 16px;
  font-weight: 24px;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #2B2B21;
}

.drawer-menu__entry {
  margin-top: 10px;
}

.mv {
  width: 100%;
  height: 500px;
  background-image: url(../images/mv-bg_dark.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .mv {
    background-image: url(../images/mv-bg_sp_dark.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.mv__inner {
  position: relative;
  width: 100%;
  height: inherit;
}

.mv__title {
  padding-top: 250px;
  padding-left: 30px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 30px;
    line-height: 1.467;
    text-align: left;
  }
}
@media screen and (max-width: 425px) {
  .mv__title {
    font-size: 24px;
  }
}

.mv__company-name {
  font-size: 30px;
  font-weight: 24px;
  line-height: 1.375;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: right;
  padding-top: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .mv__company-name {
    font-size: 18px;
    line-height: 1.467;
  }
}
@media screen and (max-width: 425px) {
  .mv__company-name {
    font-size: 14px;
  }
}

.job {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .job {
    padding: 50px 0;
  }
}

.job__text {
  color: #2B2B21;
  font-size: 18px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .job__text {
    width: 100%;
  }
}

.job__container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .job__container {
    display: block;
  }
}

.job__heading {
  width: 25%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .job__heading {
    width: 100%;
  }
}

.job__important {
  font-weight: bold;
  color: #E60012;
}

.person {
  width: 100%;
  height: auto;
  background-image: url(../images/person-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .person {
    padding: 50px 0;
  }
}

.person__container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .person__container {
    display: block;
  }
}

.person__heading {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .person__heading {
    width: 100%;
  }
}

.person__items {
  width: 85%;
}
@media screen and (max-width: 768px) {
  .person__items {
    width: 100%;
  }
}

.person__item {
  padding: 10px 0;
}

.person__title {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
}

.person__title:not(:first-child) {
  padding-top: 20px;
}

.person__text {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 300;
  padding-top: 5px;
}

.atmosphere {
  width: 100%;
  height: auto;
  background-image: url(../images/atmosphere_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .atmosphere {
    padding: 50px 0 0;
    background-image: url(none);
  }
}

.atmosphere__container {
  margin-right: 400px;
}
@media screen and (max-width: 1024px) {
  .atmosphere__container {
    margin-right: 0;
  }
}

.atmosphere__title {
  font-size: 24px;
  font-weight: 700;
  color: #2B2B21;
  padding-top: 20px;
}

.atmosphere__text {
  color: #2B2B21;
  font-size: 18px;
  font-weight: 300;
  padding-top: 5px;
}

.atmosphere__sp {
  padding-top: 20px;
}

.ceo {
  background-image: url(../images/ceo_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .ceo {
    padding: 50px 0 0;
    background-image: url(none);
  }
}

.ceo__container {
  margin-right: 400px;
}
@media screen and (max-width: 1024px) {
  .ceo__container {
    margin-right: 0px;
  }
}

.ceo__title {
  font-size: 24px;
  font-weight: 700;
  color: #2B2B21;
  padding-top: 20px;
}

.ceo__text {
  color: #2B2B21;
  font-size: 18px;
  font-weight: 300;
  padding-top: 20px;
}

.ceo__sp {
  padding-top: 20px;
}

.process {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .process {
    padding: 50px 0 0;
  }
}

.flow-design {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .flow {
    display: block;
  }
}

.flow > .flowlist-item {
  list-style-type: none;
  display: flex;
  padding: 20px 0;
}

.flow > .flowlist-item .flowlist__box .flowlist__title {
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow > .flowlist-item .icon {
  line-height: 1;
  font-size: 2em;
  font-weight: bold;
  color: #B00D15;
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
}

.flow > .flowlist-item .icon::before {
  content: "STEP";
  font-size: 0.3em;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.flow > .flowlist-item .icon::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #858585;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
}

.flow > .flowlist-item .flowlist__box {
  width: calc(100% - 70px);
  margin-top: 0.8em;
}

.requirement {
  width: 100%;
  height: auto;
  background-image: url(../images/requirement_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .requirement {
    padding: 50px 0 0;
    background-image: url(none);
  }
}

@media screen and (max-width: 1024px) {
  .requirement__table {
    margin-left: auto;
    margin-right: auto;
  }
}

.requirement__items2 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .requirement__items2 {
    flex-direction: column;
  }
}

.requirement__items2:not(:first-child) {
  padding-top: 10px;
}

.requirement__title {
  width: 200px;
  height: auto;
}

.requirement__sp {
  padding-top: 20px;
}

.environment {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .environment {
    padding: 50px 0;
  }
}

.environment__wrapper {
  display: flex;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .environment__wrapper {
    display: block;
  }
}

.environment__block {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .environment__block {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .environment__block:nth-child(2) {
    padding-top: 20px;
  }
}

.environment__items {
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .environment__items {
    display: block;
  }
}

.environment__image-box {
  width: calc((100% - 3rem) / 2);
  height: auto;
}

.environment__image {
  width: 100%;
  height: auto;
}

.environment__container {
  width: calc((100% - 3rem) / 2);
  height: auto;
}
@media screen and (max-width: 768px) {
  .environment__container {
    width: 100%;
    padding-top: 10px;
  }
}

.environment__title {
  font-size: 18px;
}

.environment__sub-title {
  color: #B00D15;
  font-size: 14px;
}

.environment__text {
  font-size: 14px;
  padding-top: 5px;
}
@media screen and (max-width: 1024px) {
  .environment__text {
    font-size: 18px;
  }
}

.entry {
  width: 100%;
  height: auto;
  background-image: url(../images/entry_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.entry__inner {
  width: 100%;
  height: auto;
  padding: 50px 0;
}

.entry__title {
  color: #FFFFFF;
  text-align: center;
  padding: 15px 0 20px;
  font-size: 24px;
}

.entry__container {
  border: 2px solid #FFFFFF;
  border-radius: 5px;
  padding: 15px 0;
}

.entry__subtitle {
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
}

.entry__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .entry__buttons {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .entry__box {
    padding: 0 10px;
  }
}

.entry__box:not(:first-child) {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .entry__box:not(:first-child) {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
  }
}

.inner {
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.heading {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #B00D15;
}
@media screen and (max-width: 1024px) {
  .heading {
    font-size: 30px;
  }
}

.heading.heading--white {
  color: #FFFFFF;
}

.entry-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  font-weight: 24px;
  padding: 15px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  border-radius: 4px;
  background-color: #B00D15;
  transition: background-color 0.3s;
}
.entry-button:hover {
  opacity: 1;
  background-color: #E60012;
}

.company-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.company-video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  font-weight: 24px;
  text-align: center;
  font-size: 18px;
  color: #FFFFFF;
  padding: 15px;
  letter-spacing: 0.05em;
  border-radius: 4px;
  background-color: #B00D15;
  transition: background-color 0.3s;
}
.company-video:hover {
  opacity: 1;
  background-color: #E60012;
}

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

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lg-show {
    display: block;
  }
}

.md-br-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-br-show {
    display: block;
  }
}

.sp-br-show {
  display: none;
}
@media screen and (max-width: 425px) {
  .sp-br-show {
    display: block;
  }
}