@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
/*======================================================
 Foundation
======================================================*/
/*============================================
 Reset
============================================*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

body {
  color: #000;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 0;
  letter-spacing: 0;
}

a,
button {
  color: inherit;
  text-decoration: none;
}
a:hover,
button:hover {
  text-decoration: none;
}

button {
  width: 100%;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

/*======================================================
 Layout
======================================================*/
/*============================================
 Header
============================================*/
.l-header {
  position: absolute;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 24px;
  z-index: 2;
}
.l-header__logo > a {
  display: block;
}
.l-header__logo > a > img {
  width: 140px;
  height: 28px;
}
.l-header__nav {
  display: flex;
}
.l-header__list {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.l-header__link {
  font-family: "Inria Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.45;
}
@media screen and (min-width: 1280px) {
  .l-header {
    align-items: center;
    max-width: 1280px;
    padding: 24px 64px;
  }
  .l-header__logo > a > img {
    width: 200px;
    height: 40px;
  }
  .l-header__list {
    align-items: center;
    flex-direction: row;
    gap: 32px;
  }
}

/*============================================
 Main
============================================*/
.l-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.l-main {
  width: 100%;
}

.l-section {
  display: flex;
  align-self: stretch;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
.l-section:nth-child(even) {
  background: #f5f5f5;
}
.l-section:nth-child(n+2):nth-child(odd) {
  background: #fff;
}

/*============================================
 Footer
============================================*/
.l-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  padding: 80px 24px;
  background: #000;
}
.l-footer__logo > img {
  width: 200px;
  height: 40px;
}
.l-footer__copyright {
  color: #fff;
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 1280px) {
  .l-footer {
    padding: 80px 64px;
  }
  .l-footer__copyright {
    font-size: 0.875rem;
  }
}

/*======================================================
 Project
======================================================*/
.p-index-contact__heading, .p-index-works__heading, .p-index-service__heading, .p-index-about__heading {
  position: relative;
  font-family: "Inria Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  padding-bottom: 8px;
}
.p-index-contact__heading::after, .p-index-works__heading::after, .p-index-service__heading::after, .p-index-about__heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  margin: auto;
  background: #000;
}
@media screen and (min-width: 1280px) {
  .p-index-contact__heading, .p-index-works__heading, .p-index-service__heading, .p-index-about__heading {
    letter-spacing: 0;
  }
}

/*============================================
 Kv
============================================*/
.p-index-kv {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 33px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 24px;
  z-index: 1;
}
.p-index-kv__mark > img {
  width: 240px;
  height: 211px;
}
.p-index-kv__heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
.p-index-kv__title-ja > img {
  width: 87.2vw;
  max-width: 327px;
  height: 12.147vw;
  max-height: 46px;
}
.p-index-kv__title-en {
  display: block;
  font-family: "Inria Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (min-width: 1280px) {
  .p-index-kv {
    gap: 40px;
    padding: 0 64px;
  }
  .p-index-kv__mark > img {
    width: 364px;
    height: 320px;
  }
  .p-index-kv__heading {
    gap: 30px;
  }
  .p-index-kv__title-ja > img {
    max-width: 640px;
    max-height: 89px;
  }
  .p-index-kv__title-en {
    font-size: 2.25rem;
  }
}

/*============================================
 Main
============================================*/
.p-index-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  width: 100%;
  padding: 0 24px 60px;
  z-index: 1;
}
.p-index-main__heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
.p-index-main__title > img {
  width: 240px;
  height: 22px;
}
.p-index-main__message {
  text-align: center;
}
.p-index-main__text {
  font-size: 0.875rem;
  letter-spacing: -0.005em;
  line-height: 2;
}
.p-index-main__text + .p-index-main__text {
  margin-top: 2em;
}
@media screen and (min-width: 1280px) {
  .p-index-main {
    gap: 40px;
    padding: 0 64px 100px;
  }
  .p-index-main__mark > img {
    width: 364px;
    height: 320px;
  }
  .p-index-main__heading {
    gap: 30px;
  }
  .p-index-main__title > img {
    width: 480px;
    height: 45px;
  }
  .p-index-main__text {
    font-size: 1.25rem;
  }
}

/*============================================
 About us
============================================*/
.p-index-about {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
  padding: 80px 24px;
}
.p-index-about__message {
  text-align: left;
}
.p-index-about__text {
  line-height: 2;
}
.p-index-about__text + .p-index-about__text {
  margin-top: 2em;
}
@media screen and (min-width: 1280px) {
  .p-index-about {
    padding: 100px 64px;
  }
  .p-index-about__message {
    text-align: center;
  }
  .p-index-about__text {
    font-size: 1.125rem;
  }
  .p-index-about__text + .p-index-about__text {
    margin-top: 0;
  }
}

/*============================================
 Service
============================================*/
.p-index-service {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
  padding: 80px 24px;
}
.p-index-service__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  gap: 20px;
}
.p-index-service__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  width: 345px;
  max-width: 345px;
  padding: 18px 30px;
  border: 2px solid #eee;
  border-radius: 16px;
}
.p-index-service__title {
  order: 2;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.p-index-service__explanation {
  order: 3;
  text-align: center;
}
.p-index-service__text {
  font-size: 1.125rem;
  line-height: 2;
}
.p-index-service__image {
  order: 1;
}
.p-index-service__image > img {
  width: 80px;
  height: 80px;
}
@media screen and (min-width: 1280px) {
  .p-index-service {
    padding: 100px 64px;
  }
  .p-index-service__list {
    align-items: flex-start;
    align-items: stretch;
    flex-direction: row;
    justify-content: center;
  }
  .p-index-service__item {
    width: 560px;
    max-width: 560px;
  }
}

/*============================================
 Works
============================================*/
.p-index-works {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
  padding: 80px 24px;
}
.p-index-works__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.p-index-works__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
}
.p-index-works__link {
  color: #6f6f6f;
  font-size: 1.125rem;
  line-height: 2;
  text-decoration: underline;
}
@media screen and (min-width: 1280px) {
  .p-index-works {
    padding: 100px 64px;
  }
  .p-index-works__title {
    font-size: 1.5rem;
  }
}

/*============================================
 Contact
============================================*/
.p-index-contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
  padding: 80px 24px;
}
.p-index-contact__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
.p-index-contact__item {
  width: 100%;
  text-align: center;
}
.p-index-contact__title {
  font-weight: 700;
  line-height: 2;
}
.p-index-contact__text {
  color: #6f6f6f;
  font-weight: 500;
  line-height: 2;
}
.p-index-contact__link {
  color: #6f6f6f;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (min-width: 1280px) {
  .p-index-contact {
    padding: 100px 64px;
  }
  .p-index-contact__title, .p-index-contact__text {
    font-size: 1.125rem;
  }
}

/*======================================================
 Utillity
======================================================*/
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.u-pc-only {
  display: none;
}

@media screen and (min-width: 1280px) {
  .u-sp-only {
    display: none;
  }
  .u-pc-only {
    display: block;
  }
}

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