@charset "UTF-8";
/* Sass Document */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@layer components, variations;
@layer components {
  a,
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,
menu {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
  }
  p {
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.01em;
  }
  @media screen and (max-width: 767.98px) {
    p {
      font-size: 2.4rem;
    }
  }
  button {
    border: none;
    font: inherit;
    color: currentColor;
  }
  ol,
ul,
menu {
    list-style: none;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: 700;
}

caption,
td,
th {
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

* {
  box-sizing: border-box;
  word-break: break-word; /* 長い単語を強制的に折り返す */
  overflow-wrap: break-word; /* 同様の目的。対応ブラウザが広い */
  line-break: strict; /* 節での自然な改行を優先（日本語では特に有効） */
  white-space: normal; /* 普通の折り返し挙動に */
}

html {
  font-size: 100%;
  width: 100%;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-size: min(0.694444vw, 62.5%);
}
@media screen and (max-width: 767.98px) {
  html {
    font-size: 1.333333vw;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 1.6rem;
  scroll-behavior: smooth;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 2.4rem;
  }
}
body.is-fixed {
  overscroll-behavior-y: none;
  overflow: hidden;
}

div[id],
section[id] {
  scroll-margin-top: 2rem;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

:root {
  --headerHeight: 10rem;
  --spHeaderHeight: 11rem;
}

#main {
  padding-top: var(--headerHeight);
}
@media screen and (max-width: 767.98px) {
  #main {
    padding-top: var(--spHeaderHeight);
  }
}

.futura {
  font-family: "futura-pt", sans-serif;
}

.pc {
  display: block;
}
@media screen and (max-width: 767.98px) {
  .pc {
    display: none;
  }
}

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

.is-animate {
  opacity: 0;
  transform: translateY(10rem);
  transition: 1s opacity, 1s transform;
}
.is-animate.is-show {
  opacity: 1;
  transform: translateY(0);
}

#header {
  height: var(--headerHeight);
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 767.98px) {
  #header {
    height: var(--spHeaderHeight);
  }
}

.header_inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding-inline: 4.3rem 5.3rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .header_inner {
    padding-inline: 1.7rem 0;
  }
}

.header_logo {
  width: 11.4rem;
}
.header_logo img {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .header_logo {
    width: 14.6rem;
    padding-top: 1rem;
  }
}

.header_nav {
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .header_nav {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.84);
    margin: 0;
    top: 0;
    padding-top: 9.3rem;
    padding-bottom: 22.5rem;
    overflow: auto;
    z-index: 10;
    overscroll-behavior-y: contain;
    transform: translateX(100%);
    transition: 0.3s transform;
  }
  .header_nav.is-open {
    transform: translateX(0);
  }
}
.header_nav .header_logo {
  display: none;
  width: 29.6rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .header_nav .header_logo {
    display: block;
  }
}
.header_nav .hamburger_wrapper {
  position: absolute;
  width: 11rem;
  height: 11rem;
  top: 2rem;
  right: 4rem;
}
.header_nav .hamburger_wrapper .line {
  width: 70%;
  background-color: #fff;
}
.header_nav .hamburger_wrapper .line:first-of-type, .header_nav .hamburger_wrapper .line:last-of-type {
  height: 1px;
  top: calc(50% - 1px);
}
.header_nav .hamburger_wrapper .line:first-of-type {
  transform: rotate(45deg);
}
.header_nav .hamburger_wrapper .line:last-of-type {
  transform: rotate(-45deg);
}

.header_menu {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "futura-pt", sans-serif;
  display: flex;
  gap: 0 1.4rem;
}
@media screen and (max-width: 767.98px) {
  .header_menu {
    display: block;
    font-size: 4.6rem;
    margin-top: 8rem;
  }
}
.header_menu a {
  text-decoration: none;
  color: currentColor;
  display: block;
  background-color: #000;
  color: #fff;
  min-width: 15rem;
  text-align: center;
  padding: 0.5rem;
}
@media (any-hover) {
  .header_menu a {
    transition: 0.3s;
  }
  .header_menu a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.98px) {
  .header_menu a {
    padding: 2.5rem;
    background-color: transparent;
  }
}

.header_contact {
  display: none;
  color: #fff;
  text-align: center;
  font-size: 2.6rem;
  margin-top: 9rem;
  line-height: 1.9615384615;
}
@media screen and (max-width: 767.98px) {
  .header_contact {
    display: block;
  }
}
.header_contact a {
  color: currentColor;
  text-decoration: none;
}

.hamburger_wrapper {
  width: 11rem;
  height: 100%;
  margin-left: auto;
  display: none;
}
@media screen and (max-width: 767.98px) {
  .hamburger_wrapper {
    display: block;
  }
}

.hamburger {
  height: 100%;
  width: 100%;
  border: none;
  background-color: transparent;
  position: relative;
}
.hamburger .line {
  position: absolute;
  width: 59.0909090909%;
  height: 2px;
  background-color: #000;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.hamburger .line:first-of-type {
  top: calc(50% - 2.5rem);
}
.hamburger .line:nth-of-type(2) {
  top: calc(50% - 1px);
}
.hamburger .line:last-of-type {
  top: calc(50% + 2.5rem - 2px);
}

#footer {
  border-top: 5px solid #000;
  background-color: #f5f5f5;
  margin-top: 2.2rem;
  padding-block: 3.3rem 2rem;
}
@media screen and (max-width: 767.98px) {
  #footer {
    border-top-width: 3px;
    padding-bottom: 6.2rem 2.7rem;
  }
}

.footer_inner {
  display: flex;
  max-width: 100rem;
  margin-inline: auto;
  -moz-column-gap: 6.5rem;
       column-gap: 6.5rem;
}
@media screen and (max-width: 767.98px) {
  .footer_inner {
    display: block;
  }
}

.footer_logo {
  display: block;
  width: 17.2rem;
  margin-top: 2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .footer_logo {
    margin: 0 auto;
  }
}

.company-name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  .company-name {
    font-size: 2.1rem;
    text-align: center;
    margin-top: 2.4rem;
  }
}

.member {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .member {
    display: block;
    margin-top: 2.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .member p {
    text-align: center;
    line-height: 1.6666666667;
  }
}
.member p:not(:first-of-type) {
  border-left: 2px solid #000;
  padding-left: 2.5rem;
  margin-left: 0.3rem;
}
@media screen and (max-width: 767.98px) {
  .member p:not(:first-of-type) {
    border: none;
    margin: 1em 0 0;
  }
}

.tel-mail-wrapper {
  display: flex;
  margin-top: 2.2rem;
  -moz-column-gap: 2.6rem;
       column-gap: 2.6rem;
}
@media screen and (max-width: 767.98px) {
  .tel-mail-wrapper {
    display: block;
    margin-top: 3rem;
    text-align: center;
  }
}
.tel-mail-wrapper p {
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media screen and (max-width: 767.98px) {
  .tel-mail-wrapper p + p {
    margin-top: 0.5em;
  }
}
.tel-mail-wrapper a {
  color: currentColor;
  text-decoration: none;
}

.copyright {
  display: block;
  margin-top: 4.6rem;
  font-size: 1.2rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767.98px) {
  .copyright {
    margin-top: 7.2rem;
    text-align: center;
    font-size: 2rem;
  }
}

.section_ttl {
  text-align: center;
  font-weight: 700;
}
.section_ttl span {
  display: block;
}
.section_ttl .futura {
  font-size: 8rem;
}
.section_ttl .jp {
  margin-top: 1.8rem;
  font-size: 2.2rem;
}
@media screen and (max-width: 767.98px) {
  .section_ttl .jp {
    font-size: 3rem;
    margin-top: 3.5rem;
  }
}

.content_inner {
  max-width: 100rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .content_inner {
    padding-inline: 7.8rem;
  }
}

div[id],
section[id] {
  scroll-margin-top: var(--headerHeight);
}
@media screen and (max-width: 767.98px) {
  div[id],
section[id] {
    scroll-margin-top: var(--spHeaderHeight);
  }
}

.mv {
  position: relative;
  height: calc(100vh - var(--headerHeight));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}
@media screen and (max-width: 767.98px) {
  .mv {
    height: 35.3rem;
  }
}

.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg_mv_n.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  transform: translateY(0);
  will-change: transform;
}

.mv::before {
  /* 前述に追加 */
  transform: translateY(calc(var(--bg-offset, 0px)));
}

.site-ttl {
  font-size: 6.932rem;
  font-weight: 700;
  line-height: 1.12;
}
@media screen and (max-width: 767.98px) {
  .site-ttl {
    font-size: 5.1rem;
  }
}
.site-ttl.is-show span {
  opacity: 1;
  transform: translateX(0);
}
.site-ttl span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-2rem);
  transition-property: opacity, transform;
  transition-duration: 0.2s, 0.6s;
}

.site-ttl span:nth-of-type(1) {
  transition-delay: calc(1 * 0.02s);
}

.site-ttl span:nth-of-type(2) {
  transition-delay: calc(2 * 0.02s);
}

.site-ttl span:nth-of-type(3) {
  transition-delay: calc(3 * 0.02s);
}

.site-ttl span:nth-of-type(4) {
  transition-delay: calc(4 * 0.02s);
}

.site-ttl span:nth-of-type(5) {
  transition-delay: calc(5 * 0.02s);
}

.site-ttl span:nth-of-type(6) {
  transition-delay: calc(6 * 0.02s);
}

.site-ttl span:nth-of-type(7) {
  transition-delay: calc(7 * 0.02s);
}

.site-ttl span:nth-of-type(8) {
  transition-delay: calc(8 * 0.02s);
}

.site-ttl span:nth-of-type(9) {
  transition-delay: calc(9 * 0.02s);
}

.site-ttl span:nth-of-type(10) {
  transition-delay: calc(10 * 0.02s);
}

.site-ttl span:nth-of-type(11) {
  transition-delay: calc(11 * 0.02s);
}

.site-ttl span:nth-of-type(12) {
  transition-delay: calc(12 * 0.02s);
}

.site-ttl span:nth-of-type(13) {
  transition-delay: calc(13 * 0.02s);
}

.site-ttl span:nth-of-type(14) {
  transition-delay: calc(14 * 0.02s);
}

.site-ttl span:nth-of-type(15) {
  transition-delay: calc(15 * 0.02s);
}

.site-ttl span:nth-of-type(16) {
  transition-delay: calc(16 * 0.02s);
}

.site-ttl span:nth-of-type(17) {
  transition-delay: calc(17 * 0.02s);
}

.site-ttl span:nth-of-type(18) {
  transition-delay: calc(18 * 0.02s);
}

.site-ttl span:nth-of-type(19) {
  transition-delay: calc(19 * 0.02s);
}

.site-ttl span:nth-of-type(20) {
  transition-delay: calc(20 * 0.02s);
}

.site-ttl span:nth-of-type(21) {
  transition-delay: calc(21 * 0.02s);
}

.site-ttl span:nth-of-type(22) {
  transition-delay: calc(22 * 0.02s);
}

.site-ttl span:nth-of-type(23) {
  transition-delay: calc(23 * 0.02s);
}

.site-ttl span:nth-of-type(24) {
  transition-delay: calc(24 * 0.02s);
}

.site-ttl span:nth-of-type(25) {
  transition-delay: calc(25 * 0.02s);
}

.site-ttl span:nth-of-type(26) {
  transition-delay: calc(26 * 0.02s);
}

.site-ttl span:nth-of-type(27) {
  transition-delay: calc(27 * 0.02s);
}

.site-ttl span:nth-of-type(28) {
  transition-delay: calc(28 * 0.02s);
}

.site-ttl span:nth-of-type(29) {
  transition-delay: calc(29 * 0.02s);
}

.site-ttl span:nth-of-type(30) {
  transition-delay: calc(30 * 0.02s);
}

.mv_inner {
  width: 100%;
  max-width: 100rem;
  margin-inline: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 767.98px) {
  .mv_inner {
    padding: 0 8.6rem 2rem;
  }
}

#corporate {
  padding-top: 8.6rem;
}
#corporate .section_ttl .jp {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767.98px) {
  #corporate .section_ttl .jp {
    margin-top: 4rem;
  }
}

#service {
  margin-top: 7.8rem;
}

.service_content {
  display: flex;
  justify-content: center;
  -moz-column-gap: 8.4rem;
       column-gap: 8.4rem;
  margin-top: 5.8rem;
  margin-left: -2.9rem;
}
@media screen and (max-width: 767.98px) {
  .service_content {
    display: block;
    margin-left: 0;
  }
}
.service_content > div {
  border-left: 1px solid #000;
  padding-left: 3.5rem;
}
@media screen and (max-width: 767.98px) {
  .service_content > div + div {
    margin-top: 10rem;
  }
}
.service_content dl > div + div {
  margin-top: 4.7rem;
}
@media screen and (max-width: 767.98px) {
  .service_content dl > div + div {
    margin-top: 6rem;
  }
}
.service_content dt {
  font-weight: 700;
}
.service_content dd {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .service_content dd {
    margin-top: 2rem;
  }
}
.service_content li + li {
  margin-top: 1.6rem;
}

#our-team {
  margin-top: 14.2rem;
}
@media screen and (max-width: 767.98px) {
  #our-team {
    margin-top: 13rem;
  }
}
#our-team .img-wrapper {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.9rem;
       column-gap: 1.9rem;
}
@media screen and (max-width: 767.98px) {
  #our-team .img-wrapper {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
#our-team .img-wrapper .img {
  width: 23.5rem;
  height: 23.5rem;
  border-radius: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  #our-team .img-wrapper .img {
    width: 17.3rem;
    height: 17.3rem;
  }
}
#our-team .heading_txt {
  text-align: center;
  margin-top: 4rem;
  letter-spacing: 0.05em;
  line-height: 1.6363636364;
}
@media screen and (max-width: 767.98px) {
  #our-team .heading_txt {
    font-size: 2.2rem;
    margin-top: 6rem;
  }
}

.our-team_content {
  display: flex;
  justify-content: center;
  -moz-column-gap: 5.6rem;
       column-gap: 5.6rem;
  margin-top: 4.1rem;
  margin-left: -1.4rem;
}
@media screen and (max-width: 767.98px) {
  .our-team_content div + div {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .our-team_content {
    display: block;
    margin-left: 0;
    margin-top: 5rem;
  }
}
.our-team_content li {
  padding-left: 1.2em;
  text-indent: -1.1em;
}
.our-team_content li + li {
  margin-top: 1.12rem;
}
@media screen and (max-width: 767.98px) {
  .our-team_content li + li {
    margin-top: 2rem;
  }
}
.our-team_content li:nth-of-type(n + 10) {
  padding-left: 1.9em;
  text-indent: -1.8em;
}

@media screen and (max-width: 767.98px) {
  #partners {
    margin-top: 12rem;
  }
}

.partners_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 82rem;
  margin-inline: auto;
  margin-top: 4.4rem;
}
@media screen and (max-width: 767.98px) {
  .partners_list {
    display: block;
    margin-inline: 3rem;
    max-width: inherit;
  }
}
.partners_list li {
  width: 40rem;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.98px) {
  .partners_list li {
    width: 100%;
    min-height: 14rem;
  }
  .partners_list li + li {
    margin-top: 4.2rem;
  }
}
.partners_list a {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: currentColor;
  text-decoration: none;
}
@media (any-hover) {
  .partners_list a {
    transition: 0.3s;
  }
  .partners_list a:hover {
    opacity: 0.7;
  }
}

.partener_inner {
  flex: 1;
  background-color: #000;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .partener_inner {
    padding: 0.5rem 1rem;
  }
}
.partener_inner .name {
  font-size: 2rem;
}
@media screen and (max-width: 767.98px) {
  .partener_inner .name {
    font-size: 2.64rem;
  }
}
.partener_inner .logo {
  height: 4.8rem;
  width: auto;
}
@media screen and (max-width: 767.98px) {
  .partener_inner .logo {
    height: 6.9rem;
  }
}
.partener_inner .logo + .en {
  margin-top: 0.5rem;
}
.partener_inner .logo img {
  height: 100%;
  width: auto;
}
.partener_inner .en {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .partener_inner .en {
    font-size: 2.85rem;
  }
}

.txt-block {
  margin: 2.7rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.98px) {
  .txt-block {
    margin-top: 6rem;
  }
}
.txt-block .en {
  max-width: 69.4rem;
}
@media screen and (max-width: 767.98px) {
  .txt-block .en {
    max-width: inherit;
  }
}
.txt-block .jp {
  font-weight: 500;
}
.txt-block p {
  font-size: 1.6rem;
  line-height: 2.5;
}
@media screen and (max-width: 767.98px) {
  .txt-block p {
    font-size: 2.4rem;
    line-height: 2;
  }
}
.txt-block p + p {
  margin-top: 2em;
}
@media screen and (max-width: 767.98px) {
  .txt-block p + p {
    margin-top: 1em;
  }
}

.en {
  letter-spacing: 0.05em;
}

#archivement {
  margin-top: 11rem;
}
@media screen and (max-width: 767.98px) {
  #archivement {
    margin-top: 17rem;
  }
}
#archivement .txt-block {
  margin-top: 4.6rem;
}
#archivement .txt-block .en {
  max-width: 80.8rem;
}
@media screen and (max-width: 767.98px) {
  #archivement .txt-block .en {
    max-width: inherit;
  }
}

.corporate_logo {
  width: 35.3rem;
  margin-inline: auto;
  display: block;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767.98px) {
  .corporate_logo {
    margin-top: 8.2rem;
    width: 30.9rem;
  }
}
.corporate_logo img {
  width: 100%;
}

.ex-image {
  margin-top: 15rem;
  background-color: #143063;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .ex-image {
    display: block;
    margin-top: 12.8rem;
  }
}
.ex-image > div {
  flex-grow: 1;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .ex-image > div {
    display: none;
  }
}
.ex-image > div::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.2rem;
  height: 3rem;
  background: url(../img/mark_star.svg) no-repeat center center/100% 100%;
  transform: translate(-50%, -50%);
}
.ex-image .img-wrapper {
  max-width: 100rem;
  margin-inline: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .ex-image .img-wrapper {
    margin: 0;
  }
}
.ex-image .img-wrapper img {
  width: 100%;
}

.works {
  margin-top: 24rem;
  position: relative;
  /* padding-bottom: 14.5rem; */
  display: flow-root;
  display: grid;
}
@media screen and (max-width: 767.98px) {
  .works {
    /* padding-bottom: 11rem; */
  }
}

.bg_works {
  grid-area: 1/1;
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  height: 100vh;
  left: 0;
  right: 0;
  top: 0;
  background: url(../img/bg_works.jpg) no-repeat top center/cover;
  will-change: transform;
  /* &.is-fixed {
  	position: fixed;
  }
  &.is-absolute {
  	top: auto;
  	bottom: 0;
  } */
}

.works_list {
  grid-area: 1/1;
  position: relative;
  z-index: 3;
  max-width: 100rem;
  margin-inline: auto;
  margin-top: -14.5rem;
  margin-bottom: 14.5rem;
}
@media screen and (max-width: 767.98px) {
  .works_list {
    max-width: inherit;
    margin-inline: 5.8rem;
  }
}

.works_item {
  background-color: #143063;
  padding: 3.3rem 3.9rem 5.1rem 4.4rem;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .works_item {
    padding: 4.8rem 3.4rem 6.3rem;
  }
}
.works_item .ttl {
  text-align: center;
  font-weight: 700;
}
.works_item .ttl .en,
.works_item .ttl .jp {
  display: block;
}
.works_item .ttl .jp {
  font-size: 2.4rem;
}
@media screen and (max-width: 767.98px) {
  .works_item .ttl .jp {
    font-size: 3.6rem;
  }
}
.works_item .ttl .en {
  font-size: 2rem;
  margin-top: 1.9rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767.98px) {
  .works_item .ttl .en {
    font-size: 2.4rem;
  }
}
.works_item + .works_item {
  margin-top: 3.8rem;
}

.works_contnt {
  display: flex;
  margin-top: 2.7rem;
  -moz-column-gap: 3.2rem;
       column-gap: 3.2rem;
}
@media screen and (max-width: 767.98px) {
  .works_contnt {
    display: block;
  }
}

.works_img {
  width: 40rem;
  height: 40rem;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 1rem;
  display: block;
}
@media screen and (max-width: 767.98px) {
  .works_img {
    width: 100%;
    height: auto;
    aspect-ratio: 570/410;
    margin-top: 4.4rem;
  }
}
.works_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_body {
  flex-grow: 1;
}
@media screen and (max-width: 767.98px) {
  .works_body {
    padding-top: 4.8rem;
  }
}
.works_body p + p {
  margin-top: 1.3em;
}

.company-message {
  text-align: center;
  margin-top: 19.3rem;
}
.company-message .ttl {
  font-size: 4.1rem;
  font-weight: 700;
}
.company-message .ttl + p {
  margin-top: 1.9rem;
  letter-spacing: 0.05em;
}

#partners {
  margin-top: 10.3rem;
}

.bg-skew {
  position: relative;
  width: 100%;
  height: 100%;
}
.bg-skew::after {
  content: "";
  position: absolute;
  top: 12rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 153rem;
  background-color: #f5f5f5;
  z-index: -1;
  -webkit-clip-path: polygon(0 55rem, 100% 0, 100% calc(100% - 55rem), 0% 100%);
          clip-path: polygon(0 55rem, 100% 0, 100% calc(100% - 55rem), 0% 100%);
}
@media screen and (max-width: 767.98px) {
  .bg-skew::after {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */