@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/*---------------------------------------------------------------------------
基本設定
---------------------------------------------------------------------------*/
html {
  /* 10/1280*100 */
  font-size: 0.78125vw;
}
@media screen and (max-width: 767px) {
  html {
    /* 10/375*100 */
    font-size: 2.6666666667vw;
  }
}

body {
  line-height: 1.71;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  background: #1a2930;
  position: relative;
  height: 100vh;
}

a {
  color: inherit;
  display: block;
  transition: all 0.5s ease 0s;
  text-decoration: none;
}

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

/*---------------------------------------------------------------------------
共通設定
---------------------------------------------------------------------------*/
.inner {
  margin: 0 16rem;
}
@media (max-width: 767px) {
  .inner {
    margin: 0 4rem;
  }
}

.section_title {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .section_title {
    margin-bottom: 5rem;
    font-size: 42px;
  }
}

.content {
  position: relative;
}

/*---------------------------------------------------------------------------
header
---------------------------------------------------------------------------*/
.header {
  padding: 0 6rem;
}
@media (max-width: 767px) {
  .header {
    padding: 0 2rem;
  }
}

.header_box {
  display: flex;
}

.header_title {
  margin-left: 0;
  margin-right: auto;
  font-size: 2.4rem;
  font-weight: 700;
  margin: auto 0;
}
@media (max-width: 767px) {
  .header_title {
    font-size: 2rem;
  }
}

.header_items {
  margin-left: auto;
  margin-right: 0;
}

.header_item {
  font-size: 2rem;
  font-weight: 500;
  position: relative;
}
@media (max-width: 767px) {
  .header_item {
    font-size: 1.8rem;
  }
}
.header_item ::after {
  content: "";
  width: 6rem;
  background: #f7ce3e;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 3px;
}
.header_item:not(:first-child) {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .header_item:not(:first-child) {
    margin-top: 1rem;
  }
}

/*---------------------------------------------------------------------------
Top
---------------------------------------------------------------------------*/
.top {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_name {
  display: block;
  text-align: center;
}

.top_name_en {
  font-size: 8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .top_name_en {
    font-size: 3.2rem;
  }
}

.top_subname_en {
  font-size: 5rem;
  font-weight: 700;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .top_subname_en {
    font-size: 2.8rem;
    margin-top: 1rem;
  }
}

.top_job {
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .top_job {
    font-size: 2.8rem;
    margin-top: 1.5rem;
  }
}

.about_title {
  text-align: center;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .about_title {
    margin-bottom: 5rem;
    font-size: 27px;
  }
}

.about_text {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .about_text {
    font-size: 16px;
  }
}

.ability_item:not(:first-child) {
  margin-top: 4rem;
}

.ability_item_title {
  font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .ability_item_title {
    font-size: 24px;
  }
}

.ability_item_text {
  font-size: 1.8rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .ability_item_text {
    margin-top: 2rem;
    font-size: 16px;
  }
}

.ability_item_text_list:not(:first-child) {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .ability_item_text_list:not(:first-child) {
    margin-top: 0.7rem;
  }
}

.sample_item:not(:first-child) {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .sample_item:not(:first-child) {
    margin-top: 3rem;
  }
}

.sample_item_title {
  font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .sample_item_title {
    font-size: 24px;
  }
}

.sample_item_content {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}
@media (max-width: 767px) {
  .sample_item_content {
    gap: 1rem 3rem;
  }
}

.sample_item_content_list {
  width: 19.9rem;
}
@media (max-width: 767px) {
  .sample_item_content_list {
    width: 12.3rem;
  }
}

.sample_item_content_img {
  width: 100%;
}
.sample_item_content_img img {
  width: 100%;
  border-radius: 50%;
}

.sample_item_content_title {
  font-size: 1.8rem;
  margin-top: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .sample_item_content_title {
    font-size: 16px;
    margin-top: 1rem;
  }
}

.career_item {
  font-size: 1.8rem;
  display: flex;
}
@media (max-width: 767px) {
  .career_item {
    font-size: 16px;
  }
}
.career_item:not(:first-child) {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .career_item:not(:first-child) {
    margin-top: 50px;
  }
}

.career_item_right {
  margin-left: 3rem;
}
@media (max-width: 767px) {
  .career_item_right {
    margin-left: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
